shithub: mc

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