shithub: mc

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