Skip to content

Instantly share code, notes, and snippets.

@dylan-conlin
Created January 27, 2014 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylan-conlin/8642596 to your computer and use it in GitHub Desktop.
Save dylan-conlin/8642596 to your computer and use it in GitHub Desktop.
1 line fizzbuzz in coffescript
"#{if i%3 is 0 then 'return fizz' else ''}#{if i%5 is 0 then 'buzz' else ''}" or i for i in [1..100]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment