Home > def > identifier 
 en fr de es it nl pl pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
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