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