shithub: mc

ref: 79428e454cf05c659a18b1928cae8d7ab96dd879
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}