shithub: mc

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