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