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