shithub: mc

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