shithub: mc

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