Home / def / identifier 
identifier
An identifier is a sequence of characters used for representing the name of a variable, a class, a method, a property, a constant or an event.

Here are some valid identifiers: Some identifiers in Gambas are reserved keywords, and so cannot be used as variable names.

To prevent the compiler from interpreting an identifier as a reserved keyword, put it between braces, like that:

DIM {Default} AS String
DIM {Dim} AS Collection