The Dink Network

Reply to Re: Loops

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
July 29th 2004, 02:59 PM
anon.gif
Vedran
Ghost They/Them
 
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.