shithub: mc

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