shithub: mc

ref: 6137499d82a91ff950f9f3da7e48c2388a76d507
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	std.exit(foo(42))
}