shithub: mc

ref: 09ca67c40a822dc77a3049dc1bc35565b3081c9f
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}