shithub: mc

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