Skip to content

Instantly share code, notes, and snippets.

@elim
Forked from dzfl/fizzbuzz.rb
Created November 17, 2008 15:43
Show Gist options
  • Save elim/25802 to your computer and use it in GitHub Desktop.
Save elim/25802 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
for n in 1..30
if 0 == n % 15
p "fizzbuzz"
elsif 0 == n % 5
p "buzz"
elsif 0 == n % 3
p "fizz"
else
p n
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment