shithub: mc

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