RAbsBJ

Parameters
a real
return type
real
Source code
function RAbsBJ takes real a returns real
    if (a >= 0) then
        return a
    else
        return -a
    endif
endfunction
Source
Blizzard.j
wc3modding.com
RAbsBJ