shithub: mc

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