Ardenian
A
Ardenian
Is there a better way, a one-line way to write this ?
with a never == b
I thought about something like
but I don't know what I could set in the sign function.
JASS:
function xyz takes nothing returns nothing
local integer a
local integer b
local integer c
if a > b then
set c = 1
elseif a < b then
set c = -1
endif
endfunction
I thought about something like
set c = ISignBJ(<?>)
,but I don't know what I could set in the sign function.
Last edited by a moderator: