shithub: mc

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