Skip to content

Instantly share code, notes, and snippets.

@kokudori
Created October 21, 2011 11:50
Show Gist options
  • Save kokudori/1303644 to your computer and use it in GitHub Desktop.
Save kokudori/1303644 to your computer and use it in GitHub Desktop.
CoffeeScriptでFizzBuzz
for n in [1..100]
console.log switch
when n % 15 is 0
'FizzBuzz'
when n % 5 is 0
'Buzz'
when n % 3 is 0
'Fizz'
else
n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment