Skip to content

Instantly share code, notes, and snippets.

@pohatu
Created April 14, 2014 08:19
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 pohatu/10627192 to your computer and use it in GitHub Desktop.
Save pohatu/10627192 to your computer and use it in GitHub Desktop.
fizzbuzz in 66 characters
1..100|%{"fizz"*!($_%3)+"buzz"*!($_%5)+"$_"*!(!($_%3)-or!($_%5));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment