shithub: mc

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