shithub: mc

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