shithub: mc

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