standard.C.math.abs

abs is available since version 1.0.

Prototype:

number abs(number n)

Parameters

n
[in] Number whose absolute value is to be calculated

Description:

The abs function returns the absolute value of its parameter.

Return value:

the absolute value of its parameter

Example
import standard.C.math

class Main {
     function Main() {
          var n = -4; 
          var ln = -2147483600 ; 
          var fn = -32.34; 
          echo "The absolute value of " + n + " is " + abs(n)+"\n";
          echo "The absolute value of " + ln + " is " + labs(ln)+"\n";
          echo "The absolute value of " + fn + " is " + fabs(fn)+"\n";
     }
} 
 

Results 
The absolute value of -4 is 4
The absolute value of -2147483600 is 2147483600
The absolute value of -32.340000000000003 is 32.340000000000003