shithub: mc

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