Skip to content

Instantly share code, notes, and snippets.

@opsb
Created December 5, 2012 16:19
Show Gist options
  • Select an option

  • Save opsb/4217071 to your computer and use it in GitHub Desktop.

Select an option

Save opsb/4217071 to your computer and use it in GitHub Desktop.
Fizzbuzz golf
(1..100).each do|n|
text = "Fizz" if n % 3 == 0
text = "#{text}Buzz" if n % 5 == 0
puts text || n
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment