shithub: mc

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