shithub: mc

ref: 3384df94db0bc2cd8cb97f5eddbdcabc9b2a2eae
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))
}