shithub: mc

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