attr Vector3::x
attr assert_not_equalVector3::z

def Vector3::Vector3(x, y, z) {
    this.x = x
    this.y = y
    this.z = z
}

var v = Vector3(1,2,3);
assert_equal(1, v.x);
