abs function
- Posted by Alan Tu <ATU5713 at COMPUSERVE.COM> Sep 01, 1998
- 592 views
A cleaner abs function. function absolutevalue(atom i) -- doesn't need to be an integer! atom r r =3D i if i<0 then r =3D -1 * i end if return r end function --Alan =