shithub: mc

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