rubyx/lib/vool/while_statement.rb

10 lines
170 B
Ruby
Raw Normal View History

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