Skip to content

Instantly share code, notes, and snippets.

@glass5er
Created May 21, 2013 16:18
Show Gist options
  • Save glass5er/5621092 to your computer and use it in GitHub Desktop.
Save glass5er/5621092 to your computer and use it in GitHub Desktop.
FizzBuzz practice in Ruby
#!/usr/bin/env ruby
def fizzbuzz(n)
(n % 15 == 0) ? "FizzBuzz" :
(n % 5 == 0) ? "Buzz" :
(n % 3 == 0) ? "Fizz" :
n
end
50.times {|i|
puts fizzbuzz(i+1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment