class Dry::Logic::RuleCompiler

def visit_and(node)

def visit_and(node)
  left, right = node
  visit(left).and(visit(right))
end