===== Abs (Function) =====
==== Format ====
**abs** ( [[numericexpressions|numeric_expression]] )
returns [[floatexpressions|float_expression]] or [[integerexpressions|integer_expression]] depending on the type of expression passed.
==== Description ====
Returns the absolute value of a [[numericexpressions|numeric_expression]].
==== Example ====
print abs(-45)
print abs(6.45)
will print
45
6.45
==== See Also ====
{{page>en:start#Mathematics&noheader}}