shithub: mc

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