shithub: mc

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