shithub: mc

ref: ffc55ee721c02d1caede8d7fbad9e8b687f01306
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))
}