shithub: mc

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