Files
croissant/lib/syntax/UnaryOperators.ml
T
2024-07-08 16:44:42 +02:00

6 lines
183 B
OCaml

type unary_operators = ArithmeticNegation | LogicalNegation
let pp_unary_operators = function
| ArithmeticNegation -> "ArithmeticNegation"
| LogicalNegation -> "LogicalNegation"