shithub: mc

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