Functions Documentation
View Function Edit Function
Name abs
Syntax (abs x) -> z
Argument List x: any number
Returns z: the absolute value of that number
Category math
Description Obtains the absolute value of a number
Example
(abs 1) 
returns 1
(abs -1) 
returns 1
Comment Basic math function.