6 lines
115 B
Ruby
6 lines
115 B
Ruby
module Vool
|
|
class WhileStatement < Statement
|
|
attr_accessor :branch_type , :condition , :statements
|
|
end
|
|
end
|