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
a | real |
1.00
real
function RAbsBJ takes real a returns real
if (a >= 0) then
return a
else
return -a
endif
endfunction