rubyx/lib/vool/while_statement.rb
2017-04-01 21:28:57 +03:00

6 lines
115 B
Ruby

module Vool
class WhileStatement < Statement
attr_accessor :branch_type , :condition , :statements
end
end