Guest User

Untitled

a guest
Apr 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Object
  2. def show
  3. Ruby.primitive :object_show
  4. end
  5. end
  6.  
  7. class Fixnum
  8. def +(arg)
  9. Ruby.primitive :fixnum_add
  10. end
  11. end
  12.  
  13. "3 + 4 is:".show
  14. (3 + 4).show
Add Comment
Please, Sign In to add comment