shithub: mc

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