We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3762ee9 commit 5b450cfCopy full SHA for 5b450cf
1 file changed
src/main/java/org/teachingkidsprogramming/recipes/completed/section01forloops/KataQuestions/CompleteSquare.java
@@ -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