shithub: mc

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