shithub: mc

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