shithub: mc

ref: a434ff7d4dfa4121e1070bbba0754bbbd04630c4
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	std.exit(foo(42))
}