2014-06-13 23:19:12 +02:00
|
|
|
module Crystal
|
|
|
|
module Kernel
|
|
|
|
def self.putstring context
|
2014-06-14 22:48:12 +02:00
|
|
|
function = Vm::Function.new(:putstring , Vm::Reference , [] )
|
2014-06-13 23:19:12 +02:00
|
|
|
ret = Vm::RegisterMachine.instance.write_stdout(function)
|
|
|
|
function.set_return ret
|
|
|
|
function
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|