shithub: mc

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