History  | 
Abs (math) 
Purpose 
Computes the absolute value of a numeric expression. 
Syntax 
Abs (NumericExpression) 
 Example 
Sub Main() 
        Print "Absolute value of .3456 is:", 
Abs(.3456) 
        Print "Absolute value of -.3456 is:", 
Abs(.3456) 
End Sub 
 | ||||