shithub: mc

ref: 564acd81105fcf1b5b9942ef7de3e04d928ebebd
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}