shithub: mc

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