shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}