Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created February 15, 2017 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/fbf9b3c13645a8285cedce8395d6c66f to your computer and use it in GitHub Desktop.
Save deque-blog/fbf9b3c13645a8285cedce8395d6c66f to your computer and use it in GitHub Desktop.
let e = add [ cst(1)
, cst(2)
, mul [cst(0), var("x"), var("y")]
, mul [cst(1), var("y"), add [cst(2), var("x")]]
, add [cst(0), var("x") ]]
prn e
> "(+ 1 2 (* 0 x y) (* 1 y (+ 2 x)) (+ 0 x))"
prnInfix e
> "1 + 2 + 0 * x * y + 1 * y * (2 + x) + 0 + x"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment