rubyx/test/melon/helper.rb

14 lines
241 B
Ruby
Raw Normal View History

require_relative '../helper'
2017-01-14 19:10:34 +01:00
module Melon
module CompilerHelper
def in_Space(statements)
"class Space ; #{statements} ; end"
end
def as_main(statements)
in_Space("def main ; #{statements}; end")
end
end
end