redefine basic arithmetic
class Fixnum alias old_plus + # Redefine addition of Fixnums. This is a BAD IDEA! def +(other) old_plus(other).succ end end