Skip to content

Instantly share code, notes, and snippets.

@AlexEscalante
Created June 27, 2013 04:53
Show Gist options
  • Save AlexEscalante/5874034 to your computer and use it in GitHub Desktop.
Save AlexEscalante/5874034 to your computer and use it in GitHub Desktop.
FizzBuzz!
puts (1..100).map &-> e { e % 15 == 0 ? :fizzbuzz : e % 3 == 0 ? :fizz : e % 5 == 0 ? :buzz : e }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment