RMinBJ

Parameters
a real
b real
comment
patch

1.00

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