shithub: mc

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