shithub: mc

ref: 64046d70836a316dd7ea1fc544cf5e30cb41b947
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}