shithub: mc

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