package org.teachingkidsprogramming.section01forloops; public class MakeALogo { public static int YValue = 300; public static int XValue = 100; public static void main(String[] args) { // Show the Tortoise --#1 // Make the Tortoise draw a line as fast as possible --#2 // Setup the Color Wheel --#3 HINT: Use the TKPLogo object // Draw a TKP 'T' --#4 // Draw a left bracket --#8 // Draw a TKP 'K' --#5 // Draw a right bracket --#9 // Draw an outer TKP 'P' --#6 // Draw an inner TKP 'P' --#7 } }