Skip to content

Commit 5b450cf

Browse files
committed
new full square kata w/@dcoopersmith
1 parent 3762ee9 commit 5b450cf

File tree

1 file changed

+15
-0
lines changed
  • src/main/java/org/teachingkidsprogramming/recipes/completed/section01forloops/KataQuestions

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.teachingkidsprogramming.recipes.completed.section01forloops.KataQuestions;
2+
3+
//------------Square Kata---------------//
4+
// Use the Tortoise to draw a red square with a width and height of 40 pixels
5+
// Write each of the English line comments (use at least 6 line comments)
6+
// Number each comment line at the end, so your user knows the correct order to translate the code
7+
// Verify - step one - Translate EACH comment line into code
8+
// Verify - step two - Run your code after each line
9+
public class CompleteSquare
10+
{
11+
public static void main(String[] args) throws Exception
12+
{
13+
//TODO: write comments and then code here
14+
}
15+
}

0 commit comments

Comments
 (0)