Skip to content

Commit b21b4e6

Browse files
committed
added english comment w/Kim
1 parent cda6492 commit b21b4e6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • src/main/java/org/teachingkidsprogramming/recipes/completed/section00demos

src/main/java/org/teachingkidsprogramming/recipes/completed/section00demos/QuickSquare.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ public static void main(String[] args) throws Exception
1414
int sides = r.nextInt(10) + 1;
1515
Color color = PenColors.Reds.Red;
1616
int length = 50;
17-
int width = 20;
17+
int width = 40;
18+
//Have the Tortoise draw a blue square that is 50 pixel on each side
1819
Tortoise.drawShape(sides, color, length, width);
1920
}
2021
}

0 commit comments

Comments
 (0)