File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/main/java/org/teachingkidsprogramming/recipes/completed/section01forloops/KataQuestions Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments