class Object
def show
Ruby.primitive :object_show
end
end
class Fixnum
def +(arg)
Ruby.primitive :fixnum_add
end
end
"3 + 4 is:".show
(3 + 4).show
|
Pastie
Support Pastie
or read my
Pastie << self
blog
class Object
def show
Ruby.primitive :object_show
end
end
class Fixnum
def +(arg)
Ruby.primitive :fixnum_add
end
end
"3 + 4 is:".show
(3 + 4).show
|