This streamlined
version of C++ has these basic
syntax rules:
- It is case sensitive, so "evGo"
is different from
"evgo."
- Names must follow these rules:
- No spaces ("Start motor" is not correct.)
- No special characters other than underscore ("_")
("StartMotor@3" is not correct.)
- Must start
with a letter, cannot start with an
underscore ("2ToBegin" is not correct.)
- All
statements must end in a semicolon
- Do not to
use Reserved words such as id, for, next.