shithub: mc

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