shithub: mc

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