Skip to content

Instantly share code, notes, and snippets.

@dzfl
Created November 17, 2008 15:38
Show Gist options
  • Save dzfl/25800 to your computer and use it in GitHub Desktop.
Save dzfl/25800 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