shithub: mc

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