shithub: mc

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