rubyx/lib/vm/kernel.rb

7 lines
72 B
Ruby
Raw Normal View History

2014-05-02 07:02:25 +02:00
module Vm
module Kernel
def self.puts
"me"
end
end
end