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