Home / def / identifier 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History
 
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