Pattern: Variable name starts with number
Issue: -
You appear to be assigning to a variable name that starts with a digit. This is not allowed: variables must start with A-Z
, a-z
or _
.
Switch to a variable name that does not start with a digit.
Example of incorrect code:
411toppm=true
Example of correct code:
_411toppm=true