shithub: mc

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