+ (Math)

Adds two numbers.

Arguments

term0
is a natural or integer or real number.
term1
must be of the same type as
term0
.

Return values

sum
of the two numbers. In case of overflow for natural numbers, the result modulo 2^N is returned, where N is the bit count of the type. Negative integers are stored as two's complement, and behave correspondingly in case of overflow.

Example

2 3 + print LF print 2.0 3.0 + print
Output:
5 5.000000