rubyx/lib/kernel/system.rb
2014-06-14 00:19:12 +03:00

11 lines
237 B
Ruby

module Crystal
module Kernel
def self.exit context
function = Vm::Function.new(:exit , Vm::Integer , [] )
ret = Vm::RegisterMachine.instance.exit(function)
function.set_return ret
function
end
end
end