Skip to content

Instantly share code, notes, and snippets.

@DouglasAllen
Created August 31, 2015 22:21
Show Gist options
  • Select an option

  • Save DouglasAllen/2e34d1b9094ef62dc40d to your computer and use it in GitHub Desktop.

Select an option

Save DouglasAllen/2e34d1b9094ef62dc40d to your computer and use it in GitHub Desktop.
def many n
n.times do |i|
yield i
end
end
many 9 do |i|
puts "#{i+1} Mississippi"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment