shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}