2019-08-12 11:36:32 +02:00
|
|
|
module Mom
|
2015-11-30 15:09:12 +01:00
|
|
|
module Builtin
|
|
|
|
class Space
|
|
|
|
module ClassMethods
|
2018-03-18 17:38:35 +01:00
|
|
|
include CompileHelper
|
2015-11-30 15:09:12 +01:00
|
|
|
|
|
|
|
# main entry point, ie __init__ calls this
|
|
|
|
# defined here as empty, to be redefined
|
2018-04-01 14:17:16 +02:00
|
|
|
def main(context)
|
2018-03-18 17:38:35 +01:00
|
|
|
compiler = compiler_for(:Space , :main ,{args: :Integer})
|
2018-06-30 22:16:17 +02:00
|
|
|
return compiler
|
2015-11-30 15:09:12 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
extend ClassMethods
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|