Specifications

Commands - 1
ABS
Numeric Function
Syntax: n = ABS(m)
Purpose: To return the absolute value of the expression m.
Remarks: The absolute value of a number is always positive or zero.
Related: none
Example: PRINT ABS(7)
7
PRINT ABS(–7)
7
Error: none