shithub: mc

ref: 11be53a01c3112de8fd6bcf81b306ee7c39a37ec
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}