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