shithub: mc

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