shithub: mc

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