shithub: mc

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