Skip to content

Instantly share code, notes, and snippets.

@virtualdogbert
Created September 7, 2013 21:46
Show Gist options
  • Save virtualdogbert/6479612 to your computer and use it in GitHub Desktop.
Save virtualdogbert/6479612 to your computer and use it in GitHub Desktop.
This fizzbuzz example, is for my YouTube show SE GEEK: www.youtube.com/user/virtualdogbert
//Fizz Buzz in 62 characters vs http://rosettacode.org/wiki/FizzBuzz#Java
(1..100).each{println"${it%3?'':'Fizz'}${it%5?'':'Buzz'}"?:it}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment