package org.teachingkidsprogramming.section09final; public class RectangleKata { public static void main(String[] args) { // Draw a rectangle // Write the steps to code your rectangle out in English // Translate from English to Java one line at a time // Run your code after each line of Java to make sure it works as expected // XTRA CREDIT: After your code is working, re-factor to remove duplication } }