fork download
  1. class Fixnum
  2. def +(y)
  3. self - y
  4. end
  5. end
  6.  
  7. puts 5 + 3
Success #stdin #stdout 0.01s 7452KB
stdin
Standard input is empty
stdout
2