shithub: mc

ref: 34adf4b62333b2bfd3496d3b61d62bc7a00f3140
dir: /test/add.myr/

View raw version
use std
/* should exit with status 53 */
const main = {
	var a
	var b
	var c

	a = 42
	b = 11
	c = 0_0
	std.exit(a + b + c)
}