Kojo Projects - Project 2 - Drawing a Square May 3, 2012, Cardinal Forest Elementary School

Kojo Programming
Learn about Kojo
E Books on Kojo
Back to Kojo Projects

Kojo exercise for May 17, 2012 - Drawing a square connecting four turtles
repeat(), forward(), turn(), left(), right()

  1. Open Kojo - drawSquareStarter and Run the starter program

  2. Use the middle turtle to draw a purple square that connects the 4 outer turtles.

    Here's the finished program running:

    Here's a beginning part of the program:

    	penUp
    	back(100)
    	setPenColor(purple)
    	left
    	forward(100)
    	right
    	penDown
    	forward(50)       <-- Hint: You have to more than 50
    	
    	Now finish the program!