shithub: mc

ref: 95fc77c94bec1b7e1d3df3abd6706bec795225e0
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}