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