shithub: mc

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