shithub: mc

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