shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}