rubyx/lib/vool/logical_statement.rb

12 lines
314 B
Ruby
Raw Normal View History

2017-04-04 17:35:15 +02:00
module Vool
# Logical Statements are guaranteed to return boolean
# either :and or :or, which may be written as && and ||
class LogicalStatement < Statement
attr_reader :name , :left , :right
def initialize(name , left , right)
@name , @left , @right = name , left , right
end
end
end