shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}