shithub: mc

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