shithub: mc

ref: e1b5f8f8dee7eba58fe610a2b18a7f3bb80c6ede
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}