ref: 51d5a41b3f09a15fef2f427a129f877365d10bf6 dir: /test/closure.myr/
/* checks that functions with environment capture work. should exit with 42. */ const main = { var a = 42 var f = {b -> a + b } -> f(13) }