shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}