shithub: mc

ref: 1f07ea309194e550b726d4abc4295876854c3781
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}