shithub: mc

ref: 076907e11308f988a76dc73fc97641e2ae6b238e
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}