shithub: mc

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