shithub: mc

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