shithub: mc

ref: 0584162d2da919d3ef7037f007021abbf793cfd3
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}