shithub: mc

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