Break the math!
#!/usr/bin/env ruby class Fixnum alias :original_add :+ def +(another) original_add(another).original_add(1) end end puts "1 + 1 = #{1+1}"