shithub: mc

ref: 55660f5aa113613d3176eeb31514ce234cec1bfb
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	std.exit(foo(42))
}