shithub: mc

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