shithub: mc

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