< Gambas
Nudging Variables
The nudge operators ++ and -- are not supported in gambas. However, gambas does provide the INC and DEC commands and combination assignment operators that can be used to increment or decrement variables:
Nudging variables with INC or DEC
The INC and DEC commands can be used to increment or decrement numeric variables:
INC
INC variable ' variable = variable + 1
DEC
DEC variable ' variable = variable - 1
Nudging variables with the combination assignment operators
The combination assignment operators can be used to increment or decrement numeric variables:
variable += 1 ' variable = variable + 1 variable -= 1 ' variable = variable - 1
INC or DEC commands cannot be used on constants or non-numeric variables
The INC or DEC commands cannot be used on constants or non-numeric variables.
Attempting to nudge string values with INC or DEC commands will result in a type mismatch error.
Attempting to nudge string values with INC or DEC commands will result in a invalid assignment error.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.