shithub: mc

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