shithub: mc

ref: 490e90d2122d80bce4e5f710e046b90fc9cc31ca
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))
}