ref: a9c6f053de3a54b55fa10ad07c5a94c76e854f58 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) }