shithub: mc

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