Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created January 28, 2013 03:43
Show Gist options
  • Select an option

  • Save yangsu/4652848 to your computer and use it in GitHub Desktop.

Select an option

Save yangsu/4652848 to your computer and use it in GitHub Desktop.
Ruby Yielding
class Fixnum
def my_times
i = self
while i > 0
i -= 1
yield
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment