24.07.2012, 14:50
...I don't allow a function to return a value?
Example:
Same thing for stock and normal functions.
Example:
pawn Код:
forward Loop();
public Loop()
{
foreach(Player,i)
{
printf("There are %d players connected.",i);
}
//if I don't return a value here, what would happen?
}