shithub: mc

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