shithub: mc

ref: 4d4598925d9381a2e2fa8f618cb03265d26b5468
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}