shithub: mc

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