shithub: mc

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