shithub: mc

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