shithub: mc

ref: 43fed38e2ef36ff95e59bee66cde5cff6333ac71
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}