Gambas/Nudge
< Gambas
Nudging Variables
editThe 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
editThe INC and DEC commands can be used to increment or decrement numeric variables:
INC
editINC variable ' variable = variable + 1
DEC
editDEC variable ' variable = variable - 1
Nudging variables with the combination assignment operators
editThe 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
editThe 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.