package org.teachingkidsprogramming.recipes.completed.section04mastery.KataQuestions;
import org.teachingextensions.logo.Tortoise;
//
//------------Knotting Ring Kata---------------//
// Use the Tortoise to draw a knotted ring (draw the shape FIRST)
// Implement the createColorPalette() method to set up your colors, use blue tones
//
// Write each of the English line comments (use at least 8 line comments)
// Number each comment line at the end
// Verify - step one - Translate EACH comment line into code
// Verify - step two - Run your code after each line
//
public class CompleteKnottedRing
{
public static void main(String[] args)
{
Tortoise.show();
createColorPalette();
// Write more code here...
}
private static void createColorPalette()
{
// Implement this
}
}