Cicode Programming Reference > Using Variables > Naming Variables

Naming Variables

Throughout the body of the function, the variable is referred to by its name. You can name a variable any valid name except for a reserved word, for example:

STRING			sStr;
REAL Result;
INT x, y;
OBJECT hObject;

The first 32 characters of a variable name needs to be unique.

See Also

Variable Naming Standards