shithub: mc

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