shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}