shithub: mc

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