RAbsBJ
- Parameters
a real- comment
- patch
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
real- Source code
function RAbsBJ takes real a returns real if (a >= 0) then return a else return -a endif endfunction
| a | real |
1.00
real
function RAbsBJ takes real a returns real
if (a >= 0) then
return a
else
return -a
endif
endfunction