package org.teachingkidsprogramming.section02methods; import org.teachingextensions.logo.Tortoise; public class Houses { public static void main(String[] args) { Tortoise.show(); // Make the tortoise move as fast as possible --#11 // Have the tortoise start at 200 pixels in on the X axis --#14 // The current height is 40 --#1.2 // drawHouse (recipe below) --#9.1 // ------------- Recipe for drawHouse --#9.2 // Change the pen color of the line the tortoise draws to lightGray --#15 // Move the tortoise the height of a house --#1.1 // Turn the tortoise 90 degrees to the right --#2 // Move the tortoise 30 pixels --#3 // Turn the tortoise 90 degrees to the right --#4 // Move the tortoise the height of a house --#5 // Turn the tortoise 90 degrees to the left --#6 // Move the tortoise 20 pixels --#7 // Turn the tortoise 90 degrees to the left --#8 // ------------- End of drawHouse recipe --#9.3 // drawHouse with height 120 (recipe below) --#10 // drawHouse with height 90 (recipe below) --#12 // drawHouse with height 20 (recipe below) --#13 } }