shithub: mc

ref: 36232a98d2ebeb42a853493aafab51777a3f0081
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}