forresty
8/12/2011 - 1:52 PM

Break the math!

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}"