shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}