Identifiers

<< Click to Display Table of Contents >>

Navigation:  Concordance Programming Language Reference >

Identifiers

A CPL identifier is any name. The name can represent a function, variable, reserved word, or data type.

Identifiers can contain any combination of letters, numbers, and the underscore character. However, an identifier can only begin with a letter. While the length of identifiers is not limited, Concordance will only consider the first 16 characters when comparing them.

CPL is case sensitive. Thus color, Color, and CoLoR constitute three different identifiers. Database field names, which are not case sensitive, are generally upper case to improve program readability.