shithub: mc

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