class Dry::Logic::RuleCompiler

def visit_implication(node)

def visit_implication(node)
  left, right = node
  visit(left).then(visit(right))
end