shithub: mc

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