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