*grumble* stupid lack of garbage collector language...
So do I have to null parameters passed to a function?
Eg:
So do I have to null parameters passed to a function?
Eg:
JASS:
function blah takes unit a, player b, integer c, group d returns boolean
local unit e
set a = null
set b = null
set d = null
set e = null
return maybe
endfunction