shithub: mc

ref: 7bca94e234b70a13a93c77b3e4801368ea173d3d
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}