shithub: mc

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