rubyx/lib/vool/while_statement.rb

10 lines
170 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class WhileStatement < Statement
2017-04-03 10:49:21 +02:00
attr_accessor :condition , :statements
def initialize( condition )
@condition = condition
end
2017-04-01 20:28:57 +02:00
end
end