shithub: mc

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