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