shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}