Re: Abs() function in Dos32lib

new topic     » goto parent     » topic index » view thread      » older message » newer message

>"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.

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu