Code Sketch


Square - Two Ways
By: Medora U. S. Coutinho
Category: Math
clear()
setSpeed(superFast)

//simple square
forward(100)
right()
forward(100)
right()
forward(100)
right()
forward(100)
right()

//square with repeat()
left()
hop(100)
repeat(4)
{
    forward(100)
    right()
}