Skip to content

Instantly share code, notes, and snippets.

@nanonanomachine
Created August 11, 2015 01:47
Show Gist options
  • Save nanonanomachine/45c6f2e5889046e9155a to your computer and use it in GitHub Desktop.
Save nanonanomachine/45c6f2e5889046e9155a to your computer and use it in GitHub Desktop.
Ruby FizzBuzz
(1..100).each do |n|
p case 0
when n % 15 then "FizzBuzz"
when n % 3 then "Fizz"
when n % 5 then "Buzz"
else n
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment