shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}