Nudging Variables edit

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 edit

The INC and DEC commands can be used to increment or decrement numeric variables:

INC edit

INC variable     ' variable = variable + 1

DEC edit

DEC variable     ' variable = variable - 1

Nudging variables with the combination assignment operators edit

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 edit

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.