Skip to content

Commit a03ef6c

Browse files
committed
Just a couple basic fixes as a test
1 parent 530ae62 commit a03ef6c

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.classpath

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="src" path="PrintThis"/>
54
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
65
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
76
<classpathentry combineaccessrules="false" kind="src" path="/ApprovalTests"/>

src/org/teachingkidsprogramming/recipes/completed/SimpleSquare.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.teachingkidsprogramming.recipes.completed;
22

3-
import org.teachingextensions.logo.Colors;
3+
import org.teachingextensions.logo.PenColors;
44
import org.teachingextensions.logo.Tortoise;
55

66
public class SimpleSquare
@@ -15,7 +15,7 @@ public static void main(String[] args) throws Exception
1515
for (int i = 1; i <= 4; i++)
1616
{
1717
// Change the color of the line the tortoise draws to "blue" --#4
18-
Tortoise.setPenColor(Colors.Blues.Blue);
18+
Tortoise.setPenColor(PenColors.Blues.Blue);
1919
// Move the tortoise 50 pixels --#2
2020
Tortoise.move(50);
2121
// Turn the tortoise to the right (90 degrees) --#3

0 commit comments

Comments
 (0)