shithub: mc

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