Skip to content

Commit

Permalink
improve example
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino committed Aug 7, 2023
1 parent e1db76e commit 5f5a0cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lem/lemo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ fn test() {
op!(let xx: Expr::Cons = hash2(a, b)),
op!(let (m, n) = unhash2(xx)),
op!(let z: Expr::Cons = hash2(xx, x)),
op!(let (aa, bb) = unhash2(z)),
op!(let (x_, x__) = unhash2(z)),
op!(let (aa, bb) = unhash2(x_)),
op!(let (aaa, bbb) = unhash2(x__)),
];
let ctx = &mut Context::default();
let ops = process_ops(&ops, ctx).unwrap();
Expand Down

0 comments on commit 5f5a0cf

Please sign in to comment.