Class: Confuscript::Nodes::Operators::GreaterThanNode

Inherits:
BaseNode
  • Object
show all
Defined in:
lib/confuscript/nodes/operators/greater_than_node.rb

Instance Method Summary collapse

Methods inherited from BaseNode

#find_node

Instance Method Details

#evaluate(left, right) ⇒ Object



5
6
7
# File 'lib/confuscript/nodes/operators/greater_than_node.rb', line 5

def evaluate(left, right)
  left > right
end