shithub: mc

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