Limit to FOR / WHILE Operators?

 

I'm running the simple script:

int index=0;

int start()
{

while(index < 500)
{
Print(index);

index++;

}
return(0);

}


And the indexing starts at 246 and runs to 500?

 
You can't see all notes in the terminal, check logs file in \experts\logs\
 
Yep thats it, thanks.
Reason: