shithub: mc

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