shithub: mc

ref: 8b5f4d4fdea2570a444dec28569f65c43dcd0484
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}