shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}