shithub: mc

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