Identifiers are any sequence of uninterrupted characters separated by space characters.
An identifier should not be a keyword.
An identifier should not be recognizable as an integer, long, or double.
int x;
int range2;
long l;
long largeInteger;
double _distance;
double totalArea;
string myName;
string welcome_message;