shithub: mc

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