13.12.2015, 21:28
Quote:
|
Why would you need to delete a variarble? If you want to delete it then don't create it at all.
|
Код:
new var;
stock a()
{
....
var = xxx;
....
b();
....
return (true);
}
stock b()
{
....
if(a==xxx)
{ .... }
else
{ .... }
....
return (true);
}


