shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}