Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 438 Bytes

identifiers.md

File metadata and controls

25 lines (16 loc) · 438 Bytes

Home

Identifiers

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.

Identifier examples

int x;
int range2;

long l;
long largeInteger;

double _distance;
double totalArea;

string myName;
string welcome_message;