shithub: mc

ref: 71a77dbd7f8a317edf08c55edbfe3016e97ea7fc
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}