shithub: mc

ref: 10aacae6e0d47aa51731453998dbfcec1bbb6641
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}