Beispiel #1
0
 /// <summary>
 /// Main method which initializes the robot, and starts
 /// it running. Do not modify.
 /// </summary>
 public static void Main()
 {
     // Initialize robot
     Robot robot = new Robot("1", "COM4");
     Debug.Print("Code loaded successfully!");
     Supervisor supervisor = new Supervisor(new StudentCode(robot));
     supervisor.RunCode();
 }