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