Skip to content

Instantly share code, notes, and snippets.

@kirillshevch
Last active November 23, 2018 16:18
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 kirillshevch/5e83c487e948f5d4895f763898104509 to your computer and use it in GitHub Desktop.
Save kirillshevch/5e83c487e948f5d4895f763898104509 to your computer and use it in GitHub Desktop.
class Integer
def times_method
(0...self).each do |i|
yield(i)
end
return self
end
end
5.times_method { |i| i }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment