shithub: mc

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