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
|