RAbsBJ

Parameters
a real
comment
patch

1.00

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