Introduction to Robotics/Visuals/Nested Loops 1

Nested Loops
MyCount1 VAR Byte
MyCount2 VAR Byte
FOR MyCount1 = 0 TO 200
   FOR MyCount2 = 0 TO 200
      ...
   NEXT
NEXT