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