class Dry::Logic::RuleCompiler

def visit_xor(node)

def visit_xor(node)
  left, right = node
  visit(left).xor(visit(right))
end