Which the better way
#1

Which the better way:
pawn Код:
if (blaa)
    return blaafu();
if (blaaa)
    return blaaafu();

// etc
or

pawn Код:
if (blaa) {
   blaafu();
}
else if (blaaa)
{
   blaaafu();
}
else
{
 // etc
}
And what is the meaning of return; is it return 1;?
Reply


Messages In This Thread
Which the better way - by RaeF - 07.01.2015, 05:39
Re: Which the better way - by RaeF - 07.01.2015, 06:37
Re: Which the better way - by PowerPC603 - 07.01.2015, 06:52

Forum Jump:


Users browsing this thread: 1 Guest(s)