shithub: mc

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