shithub: mc

ref: e414e8418b0ca9dd8d49894d96ef37b12276da16
dir: /test/nestfn.myr/

View raw version
use std
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	std.exit(ret42())
}