Skip to content

Instantly share code, notes, and snippets.

@teenst
Created September 1, 2012 03:35
Show Gist options
  • Save teenst/3563355 to your computer and use it in GitHub Desktop.
Save teenst/3563355 to your computer and use it in GitHub Desktop.
fizzbuzz
#!usr/bin/env ruby
1.upto(100) do |i|
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