rubyx/lib/vool/while_statement.rb
2017-04-03 11:49:21 +03:00

10 lines
170 B
Ruby

module Vool
class WhileStatement < Statement
attr_accessor :condition , :statements
def initialize( condition )
@condition = condition
end
end
end