an explanation;
when you code the statement like this;
what you are asking the compiler to do is first execute the function, then delete the return value of the function (which in this case is probably nothing).Code:delete placePlayers();
when you code the statement like this;
you are asking the compiler to delete the function.Code:delete placePlayers;




Reply With Quote