• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] Do I have to null parameters?

Status
Not open for further replies.
Level 11
Joined
Mar 31, 2009
Messages
732
*grumble* stupid lack of garbage collector language...

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
 
Status
Not open for further replies.
Top