Gambas/Combination

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Combination Assignment Operators[edit | edit source]

Gambas supports combination assignment operators (also called compound assignment operators ) in a similar manner to the C programming language. The combination assignment operators provide a more concise way of creating expressions by enabling calculations involving a variable to be performed without the variable being included in the right hand operand.

value += 3 ' value = value + 3 value /= 3 ' value = value / 3 value *= 3 ' value = value * 3

Arithmetic[edit | edit source]

+= addition -= subtraction

  • = multiplication

/= division

Concatenation[edit | edit source]

| &= | Concatenation | &\= | Concatenation (adding a path separator between the two strings if necessary)