shithub: mc

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