shithub: mc

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