]> Witch of Git - ivy/blob - ivy-examples/break.vy
Implement variable capture
[ivy] / ivy-examples / break.vy
1 (let (
2 [base (lam (y) (debug y))]
3 [f (lam (x) base)]
4 [use (f 0 0)]
5 ) (f use use))