Reply to Re: Loops
If you don't have an account, just leave the password field blank.
July 29th 2004, 02:59 PM

Vedran


You mean this:
void main ( void )
{
goto start;
loop:
say("1", 1);
goto end;
loop:
say("2", 1);
goto end;
loop:
say("3", 1);
goto end;
start:
goto loop;
end:
}
Just check it yourself: assign it to a key, press it in the game and see which number is shown. In this case it is 1.
void main ( void )
{
goto start;
loop:
say("1", 1);
goto end;
loop:
say("2", 1);
goto end;
loop:
say("3", 1);
goto end;
start:
goto loop;
end:
}
Just check it yourself: assign it to a key, press it in the game and see which number is shown. In this case it is 1.