shithub: mc

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