Skip to content

Instantly share code, notes, and snippets.

@az7arul
Last active December 11, 2015 10:18
Show Gist options
  • Save az7arul/4585232 to your computer and use it in GitHub Desktop.
Save az7arul/4585232 to your computer and use it in GitHub Desktop.
Mimic times method
class Fixnum
def retards_times
n = 0
while (n < self)
yield n
n += 1
end
end
end
## 10.retards_times {|n| puts n }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment