-FOR...TO...STEP...NEXT Loops: These are your standard For loops. Their syntax differs a bit from Java, but it follows the same idea. I'll translate an example from Java for this one... Java: for(int i=0; i<10; i+=2){ //Do Stuff } SmileBASIC: FOR I=0 TO 9 STEP 2 'DO STUFF NEXT