shithub: mc

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