shithub: mc

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