shithub: mc

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