shithub: mc

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