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