23.02.2014, 17:22
hey guys, if this code:
does the same of this:
==================================================
Does this mean that this:
does the same of this:
or this:
???????????????????
pawn Код:
if(Some Code)
{
Something;
return 1;
}
pawn Код:
if(Some Code) return Something;
Does this mean that this:
pawn Код:
if(Some Code)
{
Something;
}
pawn Код:
if(Some Code) return !Something;
pawn Код:
if(Some Code)
{
Something;
return 0;
}