class Bytewise::Ast::Operators::Add

Public Instance Methods

evaluate(first, second) click to toggle source
# File lib/brace_markup/ast/operators/add.rb, line 4
def evaluate(first, second)
  first + second
end