How to draw a square
The code for drawing a square in Repl.it
import turtle
squ=turtle.Turtle()
squ.forward(100)
squ.right(90)
squ.forward(100)
squ.right(90)
squ.forward(100)
squ.right(90)
squ.forward(100)
The code for drawing a square in Repl.it
import turtle
squ=turtle.Turtle()
squ.forward(100)
squ.right(90)
squ.forward(100)
squ.right(90)
squ.forward(100)
squ.right(90)
squ.forward(100)