shithub: mc

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