num abs(num x)
num - any numeric type (int or fixed)
Returns the absolute value of x.
abs(INT_MIN)
abs( 2.1) -> 2.1 abs(-2.1) -> 2.1 abs( 123) -> 123 abs(-123) -> 123