Created
June 15, 2013 06:55
-
-
Save cocodrips/5787208 to your computer and use it in GitHub Desktop.
coffeescriptがPythonぽく書けるね!って話
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 i in [1..100] | |
str = if i % 3 is 0 and i % 5 is 0 | |
"fizzbuzz" | |
else if i % 3 == 0 | |
"fizz" | |
else if i % 5 == 0 | |
"buzz" | |
else | |
i | |
console.log(str) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment