shithub: mc

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