add( <variable>, <number> )
Description
This will add the number given to the variable specified.
Examples
Adding a constant to a variable:
add(A, 25)
Adding a variable to another variable (add B to A, result written to A):
add(A, B)
Related information