shithub: mc

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