Skip to content

Instantly share code, notes, and snippets.

@CiaraBurkett
Created February 8, 2013 17:08
Show Gist options
  • Save CiaraBurkett/4740413 to your computer and use it in GitHub Desktop.
Save CiaraBurkett/4740413 to your computer and use it in GitHub Desktop.
FizzBuzz v.1
# FizzBuzz v1 - The Programmer's Stairway to Heaven
def fizzbuzz(int)
if (int % 3 == 0) && (int % 5 == 0)
puts "FizzBuzz"
elsif (int % 3 == 0)
puts "Fizz"
elsif (int % 5 == 0)
puts "Buzz"
else
puts "wat"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment