Skip to content

Commit f5c34aa

Browse files
committed
moved and cleaned MakeALogo w/@dcoopersmith
1 parent bb9d2c6 commit f5c34aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
289 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/section00demos/MakeALogo.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section01forloops/MakeALogo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.teachingkidsprogramming.section00demos;
1+
package org.teachingkidsprogramming.section01forloops;
22

33
public class MakeALogo
44
{
@@ -14,6 +14,6 @@ public static void main(String[] args)
1414
// Draw a TKP 'K' --#5
1515
// Draw a right bracket --#9
1616
// Draw an outer TKP 'P' --#6
17-
// Call the make_Inner_P() method --#7
17+
// Draw an inner TKP 'P' --#7
1818
}
1919
}

TeachingKidsProgramming/src/org/teachingkidsprogramming/section01forloops/Spiral.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public static void main(String[] args)
88
{
99
// Show the tortoise --#1
1010
// Make the tortoise go as fast as possible --#4
11-
// Add Blue Violet to the Color Wheel --#7
11+
// Add Blue Violet to the Color Wheel --#7 HINT: Use the TKPLogo object
1212
// Add Violet to the Color Wheel --#8
1313
// Add Purple to the Color Wheel --#9
1414
// Do the following 75 times --#3.1

0 commit comments

Comments
 (0)