Skip to content

Instantly share code, notes, and snippets.

@verdi327
Last active December 16, 2015 17:58
Show Gist options
  • Save verdi327/5473883 to your computer and use it in GitHub Desktop.
Save verdi327/5473883 to your computer and use it in GitHub Desktop.
fizzbuzz..with a Proc!
fizzbuzz = Proc.new do |n|
if n % 15 == 0
puts "fizzbuzz"
elsif n % 3 == 0
puts "fizz"
elsif n % 5 == 0
puts "buzz"
else
puts n
end
end
1.upto(100).each(&fizzbuzz)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment