Skip to content

Instantly share code, notes, and snippets.

@franklsf95
Created February 26, 2014 02:26
Show Gist options
  • Save franklsf95/9222325 to your computer and use it in GitHub Desktop.
Save franklsf95/9222325 to your computer and use it in GitHub Desktop.
Fizz Buzz
(1..100).each do |i|
if i % 15 == 0
puts 'FizzBuzz'
elsif i % 5 == 0
puts 'Buzz'
elsif i % 3 == 0
puts 'Fizz'
else
puts i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment