shithub: mc

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