shithub: mc

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