package org.teachingkidsprogramming.section01forloops;

public class SimpleSquare
{
  public static void main(String[] args) throws Exception
  {
    //  Show the tortoise --#1
    //  Make the tortoise move as fast as possible --#6
    //  Do the following 4 times --#5.1
    //      Change the pen color of the line the tortoise draws to blue --#4
    //      Move the tortoise 50 pixels --#2
    //      Turn the tortoise to the right (90 degrees) --#3
    //  Repeat --#5.2
  }
}
