Created
March 20, 2012 22:19
-
-
Save johana-star/2141870 to your computer and use it in GitHub Desktop.
FizzBuzz in CoffeeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for number in [1..100] | |
| if number % 15 is 0 | |
| console.log "FizzBuzz" | |
| else if number % 5 is 0 | |
| console.log "Buzz" | |
| else if number % 3 is 0 | |
| console.log "Fizz" | |
| else | |
| console.log number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment