shithub: mc

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