shithub: mc

ref: 9c1dd3355d31004cc2875f1ed055372e9b8b6d50
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}