shithub: mc

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