shithub: mc

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