0100: Invalid operator
int a, b
a, b > 5 // error, > is invalidPossible solutions:
int a, b
a, b = Car.GetColors(car)int a, b
a > 5
b > 5Previous0099: Left-hand side of the assignment must be a variableNext0101: Variable is not a class instance
Last updated