shithub: mc

ref: 11103467867dfd1416f7328b1facbe63da5c0cf5
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}