Skip to content

Instantly share code, notes, and snippets.

@tparkin
Created April 4, 2011 12:54
Show Gist options
  • Save tparkin/901585 to your computer and use it in GitHub Desktop.
Save tparkin/901585 to your computer and use it in GitHub Desktop.
1.upto 100 do |x|
m3 = x % 3 == 0
m5 = x % 5 == 0
if m3 || m5
p "#{"Fizz" if m3}#{"Buzz" if m5}"
else
p x
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment