ABS
Syntax
Section titled “Syntax”ABS(numericExpression)
Description
Section titled “Description”Returns the absolute value of the given argument. Argument must be a numeric expression. Returned value has the same type as the input argument.
Examples
Section titled “Examples”REM Absolute valueLET a = -1PRINT "Absolute value of a is "; ABS(a)REM 'Will print 1
Remarks
Section titled “Remarks”- This function is 100% Sinclair BASIC Compatible