shithub: mc

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