shithub: mc

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