shithub: mc

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