Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created May 21, 2014 03:20
Show Gist options
  • Save jshawl/9d63c94eb135ff2a1f8d to your computer and use it in GitHub Desktop.
Save jshawl/9d63c94eb135ff2a1f8d to your computer and use it in GitHub Desktop.
(1..100).each do |i|
line = i % 3 == 0 ? 'fizz ' : ''
line += i % 5 == 0 ? 'buzz' : ''
line.empty? ? puts(i) : puts(line)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment