rubyx/lib/risc/builtin/space.rb
2018-06-29 11:23:26 +03:00

21 lines
450 B
Ruby

module Risc
module Builtin
class Space
module ClassMethods
include CompileHelper
# main entry point, ie __init__ calls this
# defined here as empty, to be redefined
def main(context)
compiler = compiler_for(:Space , :main ,{args: :Integer})
compiler.add_mom( Mom::ReturnSequence.new)
return compiler.method
end
end
extend ClassMethods
end
end
end