The search keyword must be a single word (no spaces).

Function RMaxBJ

Line
705
Location
blizzard.j
Constant?
no
Type
function
Arguments
real a, real b
Returns
real
705
function RMaxBJ takes real a, real b returns real
706
    if (a < b) then
707
        return b
708
    else
709
        return a
710
    endif
711
endfunction