shithub: mc

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