shithub: mc

ref: 2944ebad62186a50bdab83488755287d9596b283
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}