Increment
 

Short Name: Increment

Definition: A way to Increment a single value variable, usually used in a For Loop

Usage: Increment(variabley,value)

Objective:
  • Usually used in a For loop, to Increment a variable by a given value
  • The variable, passed as first parameter, is a scalar

Note:
  • Does not return anything

Examples:
  • Increment(variable,1) is equivalent to variable = variable + 1