shithub: mc

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