shithub: mc

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