Bugs

 
Here are a few bugs I've discovered.

">=" and "<=" do not work in WHILE statements

The FOR statement has a limit of how much code can be in between the brackets.
 
">=" and "<=" do not work in WHILE statements

Try again.

The FOR statement has a limit of how much code can be in between the brackets.

How much?
 

">=" and "<=" do not work in WHILE statements

Try again.

The FOR statement has a limit of how much code can be in between the brackets.

How much?


Maybe 200 lines.
 
int start(){

   int i,j,k;
   for(i = 0; i < 10; i++){
		
      j++;
      j++;
      ... 998 more lines of j++         
      k++;
   }   	
		
   Print(" i = "+i+"  j = "+j+"  k = "+k);
   return(0);
}




Output:

2007.12.31 18:55:02 Phy__Test1234 EURUSD,H4: i = 10 j = 10000 k = 10