Skip to content

Instantly share code, notes, and snippets.

@RedSoxFan22
Created May 18, 2015 13:24
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 RedSoxFan22/47e946a0c9d3948f8e2c to your computer and use it in GitHub Desktop.
Save RedSoxFan22/47e946a0c9d3948f8e2c to your computer and use it in GitHub Desktop.
def fizzbuzz (num)
if num % 3 == 0
p "Fizz"
elsif num % 5
p "Buzz"
elsif num % 3 == 0 && num % 5 == 0
p "FizzBuzz"
else
return num
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment