# FADD
Read Time: 1 minute(s)
Tags: floating point operations mathematical operations
# Description
This function performs floating point addition of two numeric values. It takes the general form:
FADD(expression1, expression2)
1
where both expression1 and expression 2 must evaluate to numeric values. If either of the arguments is not numeric, a runtime error will occur.
An example of use is as:
CRT FADD(-8.5044,23.722)
1
to display 15.218
Go back to jBASE BASIC
Go back to Programmers' Reference Guide