shithub: mc

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