shithub: mc

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