shithub: mc

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