Most imperative programming languages—from Fortran to Java—share two unwritten rules about variables:
A variable name is a single identifier (like counter or playerHealth), possibly with underscores or camelCase.
The same name is used for assignmen...