shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}