shithub: mc

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