06.03.2009, 07:37
it does exactly what it says
like for example
Код:
while (expression is true) { // you can do something here }
pawn Код:
new i = 0;
while (i < 5)
{
printf("%d",i);
i++;
}