Skip to content

Instantly share code, notes, and snippets.

@opheliasdaisies
Last active December 28, 2015 09:29
Show Gist options
  • Save opheliasdaisies/7479156 to your computer and use it in GitHub Desktop.
Save opheliasdaisies/7479156 to your computer and use it in GitHub Desktop.
FizzBuzz written in Ruby
101.times do |i|
next if i == 0
if i % 15 == 0
puts "fizzbuzz"
elsif i % 3 == 0
puts "fizz"
elsif i % 5 == 0
puts "buzz"
else puts i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment