shithub: mc

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