shithub: mc

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