Name
Add -- add two values
Synopsis
result = Add(value1, value2)
Library
math
Function
Adds
value2
to
value1
and returns the result.
Inputs
value1
base value
value2
number to add
Results
result
result of the addition
Example
a=99 a=Add(a,1) Print(a)
This will print "100" to the screen.
Show TOC