shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}