shithub: mc

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