shithub: mc

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