5fe0ba06ab
moving on to getting mom to work and can’t have both interpreter and elf broke, about 100 tests went
10 lines
183 B
Ruby
10 lines
183 B
Ruby
module Vm
|
|
class Statements < Statement
|
|
attr_accessor :statements
|
|
def to_s
|
|
return "" unless statements
|
|
statements.collect() { |s| s.to_s }.join
|
|
end
|
|
end
|
|
end
|