Skip to content

Commit 16af7e5

Browse files
committed
new kata WheelKata for @dcoopersmith
1 parent d3e16ed commit 16af7e5

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/RectangleKata.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ public class RectangleKata
44
{
55
public static void main(String[] args)
66
{
7-
// Draw a rectangle
8-
// HINT: Write each step in English FIRST, then translate to Java one line at a time
9-
// TIP: Be sure to run after each line of Java to make sure it works as expected
7+
// Draw a rectangle
8+
// Write the steps to code your rectangle out in English
9+
// Translate from English to Java one line at a time
10+
// Run your code after each line of Java to make sure it works as expected
1011
}
1112
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package org.teachingkidsprogramming.section09final;
2+
3+
public class WheelKata
4+
{
5+
// Draw a wheel
6+
// Write the steps to code your wheel out in English
7+
// Translate from English to Java one line at a time
8+
// Run your code after each line of Java to make sure it works as expected
9+
}

0 commit comments

Comments
 (0)