shithub: mc

ref: 3bbe4ce2093413924189d6e8f0851a03524cf445
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}