ref: c464f4b8cc56ae10e8f053efc6ec8b7e9989d4df dir: /test/nestfn.myr/
use std /* checks that nested functions without environment capture work. should * exit with 42. */ const main = { const ret42 = { -> 42 } std.exit(ret42()) }