> let e = add [ cst(1) | |
, cst(2) | |
, mul [cst(0), var("x"), var("y")] | |
, mul [cst(1), var("y"), cst(2)] | |
, add [cst(0), var("x") ]] | |
> prn e | |
"(+ 1 2 (* 0 x y) (* 1 y 2) (+ 0 x))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment