sub( <variable>, <number> )

Description

This will subtract the number given from the variable specified.

Examples

Subtracting a constant to a variable:
sub(A, 25)

Subtracting a variable from another variable (subtract B from A, result written to A):
sub(A, B)