shithub: mc

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