shithub: mc

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