shithub: mc

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