shithub: mc

ref: 2b13f71e390a91faabcc209f44b1ec20ae0fa4ff
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}