shithub: mc

ref: 97635cb8850d14b42c4e6882d0d7b6aa05485271
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}