Skip to content

Instantly share code, notes, and snippets.

@ymrl
Created April 27, 2012 08:41
Show Gist options
  • Save ymrl/2507522 to your computer and use it in GitHub Desktop.
Save ymrl/2507522 to your computer and use it in GitHub Desktop.
fizzbuzz
# 65 bytes FizzBuzz code
(1..99).map{|i|puts"#{a=i%3<1?:Fizz:nil}#{i%5<1?:Buzz:a&&''||i}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment