Skip to content

Commit e73f072

Browse files
committed
new recipe MakeALogo w/ @dcoopersmith
1 parent 38a1c97 commit e73f072

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
5.31 KB
Binary file not shown.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package org.teachingkidsprogramming.section00demos;
2+
3+
public class MakeALogo
4+
{
5+
public static int YValue = 300;
6+
public static int XValue = 100;
7+
public static void main(String[] args)
8+
{
9+
// Show the Tortoise --#1
10+
// Make the Tortoise draw a line as fast as possible --#2
11+
// Setup the Color Wheel --#3 HINT: Use the TKPLogo object
12+
// Draw a TKP 'T' --#4
13+
// Draw a left bracket --#8
14+
// Draw a TKP 'K' --#5
15+
// Draw a right bracket --#9
16+
// Draw an outer TKP 'P' --#6
17+
// Call the make_Inner_P() method --#7
18+
}
19+
}

0 commit comments

Comments
 (0)