shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}