shithub: mc

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