Skip to content

Instantly share code, notes, and snippets.

@nanki
Created February 27, 2012 12:22
Show Gist options
  • Save nanki/1923400 to your computer and use it in GitHub Desktop.
Save nanki/1923400 to your computer and use it in GitHub Desktop.
class Fixnum
def **(n)
self..n
end
end
class Range
def %(step)
self.step(step)
end
end
p *4**8%2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment