package org.teachingkidsprogramming.recipes.completed.section05recursion.KataQuestions;
//------------Snowflake Kata---------------//
// Use the Tortoise to draw a snowflake using triangles
// 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 CompleteSnowflake
{
//TODO: write comments and then code here
}