Skip to content

Instantly share code, notes, and snippets.

@jbunting
Created December 10, 2014 10:22
Show Gist options
  • Save jbunting/ca0ea12cd0bba17ef94a to your computer and use it in GitHub Desktop.
Save jbunting/ca0ea12cd0bba17ef94a to your computer and use it in GitHub Desktop.
Groovy FizzBuzz 60 characters
(1..100).each{i->println"FizzBuzz"[i*i%3*4..<8-i**4%5*4]?:i}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment