//Draw a basic Square with foward left and right
clear();
setAnimationDelay(500);
//set background color
setBackground(cyan);
//set Fill Color
setFillColor(red);
//set the Pen color
setPenColor(black)
forward(150);
left();
forward(150);
left();
forward(150);
left();
forward(150);
//displace the turtle
hop(100);
left();
hop(-10);
//Draw Another rectangle wih differnt width
setFillColor(green);
right();
forward(200);
right();
forward(200);
right();
forward(200);
right();
forward(200);
//Hide the turtle
invisible();