Skip to content

Instantly share code, notes, and snippets.

@mecampbellsoup
Created September 26, 2013 03:53
Show Gist options
  • Save mecampbellsoup/6709696 to your computer and use it in GitHub Desktop.
Save mecampbellsoup/6709696 to your computer and use it in GitHub Desktop.
Ruby FizzBuzz!
def fizz_buzz num
puts "FizzBuzz" if num % 15 == 0
puts "Fizz" if num % 3 == 0
puts "Buzz" if num % 5 == 0
puts num
end
(1..50).each do |n|
fizz_buzz n
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment