Re: Abs() function in Dos32lib
- Posted by Robert B Pilkington <bpilkington at JUNO.COM> Nov 03, 1998
- 766 views
>"abs has not been declared" Euphoria has no abs() function, it is defined in Win32lib: global function abs( atom a ) if a < 0 then return -a else return a end if end function But there is no abs() function in Dos32lib. David, a good suggestion would be to either have an abs() function in Dos32lib, or to not let it be global in Win32lib, so that another abs() function won't conflict when switching between Win32lib and Dos32lib.