shithub: mc

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