Skip to content

Instantly share code, notes, and snippets.

@Erreon
Created February 3, 2012 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Erreon/1731962 to your computer and use it in GitHub Desktop.
Save Erreon/1731962 to your computer and use it in GitHub Desktop.
Fizzbuzz test
(1..100).each {|n|
if n % 3 === 0 && n % 5 === 0
puts "FizzBuzz"
elsif n % 3 === 0
puts "Fizz"
elsif n % 5 === 0
puts "Buzz"
else
puts n
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment