shithub: mc

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