shithub: mc

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