class Dry::Logic::RuleCompiler

def visit_and(node)

def visit_and(node)
  left, right = node
  visit(left) & visit(right)
end