shithub: mc

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