Kojo Projects - Introduction, Square and Circle, May 3, 2012, Cardinal Forest Elementary School

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

Kojo exercise for May 10, 2012 - Drawing squares with patterns
repeat(), forward(), turn(), left(), right()

  1. Open Kojo

  2. Type or copy in this program:

    clear
    repeat (4) {
        forward(100)
        right
    }
    left
    repeat (4) {
        forward(100)
        left
    }
    

  3. Now try to do this program

  4. Next try to do this program