FADD function

Syntax

FADD (number1, number2)
CALL !FADD (return.array, number1, number2)

Description

Use the FADD function to perform floating-point addition on two numeric values. If either number evaluates to the null value, null is returned. If either number1 or number2 evaluates to the null value, null is returned. return.array equates to number1 plus number2.

This function is provided for compatibility with existing software. You can also use the + operator to perform floating-point addition.

Example

PRINT FADD(.234,.567)

This is the program output:

0.801