shithub: mc

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