shithub: mc

ref: da5f858f60c9a8d52add2f60845483be2f4b416e
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}