package org.teachingkidsprogramming.section01forloops; import org.teachingextensions.logo.utils.EventUtils.MessageBox; public class Spiral { public static void main(String[] args) { // Show the tortoise --#1 // Make the tortoise go as fast as possible --#4 // Add Blue Violet to the Color Wheel --#7 HINT: Use the ColorWheel object // Add Violet to the Color Wheel --#8 // Add Purple to the Color Wheel --#9 // Do the following 75 times --#3.1 try { // Change the pen color of the line the tortoise draws the next color on the Color Wheel --#6 // Move the tortoise 5 times the current line number you are drawing --#5 // Turn the tortoise 1/3 of 360 degrees to the right --#2 } catch (RuntimeException re) { MessageBox.showMessage("Hold up: " + re); } // End Repeat --#3.2 } }