RMaxBJ

Parameters
a real
b real
return type
real
Source code
function RMaxBJ takes real a, real b returns real
    if (a < b) then
        return b
    else
        return a
    endif
endfunction
Source
Blizzard.j
wc3modding.com
RMaxBJ