shithub: mc

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