shithub: mc

ref: 2f21c3c5259217207c919396844d177e927e2d25
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}