mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-05-14 01:22:06 +00:00
6 lines
183 B
OCaml
6 lines
183 B
OCaml
type unary_operators = ArithmeticNegation | LogicalNegation
|
|
|
|
let pp_unary_operators = function
|
|
| ArithmeticNegation -> "ArithmeticNegation"
|
|
| LogicalNegation -> "LogicalNegation"
|