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