NAME
AddTo — Take variable. Add amount to it.
SYNOPSIS
AddTo VarName Value
DESCRIPTION
Return Value
Value of the variable after added to.
Arguments
VarNameName of variable to add to.
ValueHow much to add.
More Info
Unlike incr, this command does allow non-integer values (e.g. you can do AddTo MyVar 1.2).

For information regarding exceptions / errors, see here.
EXAMPLES
% set MyVar 123
123
% AddTo MyVar 4
127
SEE ALSO
Decr, DivideBy, MultiplyBy, SubtractFrom, expr
KEYWORDS
math, variable