Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 712
Chapter 2 Program Instructions
ABS
Field of Application
Function returning the absolute value of a numeric expression.
Syntax ABS(<nexp>)
<nexp> is a numeric expression, from which the absolute value
will be returned.
Remarks
The absolute value of a number is always positive or zero. Note that the
expression must be enclosed within parentheses.
Examples
PRINT ABS(20-25)
5
PRINT ABS(25-20)
5
PRINT ABS(5-5)
0
PRINT ABS(20*-5)
100