shithub: mc

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