Predict
Predict, the first stage of the PRIMM model.
Let's try it firsthand by reading the code and predicting what may happen.
Example 1
Take a look at the following code created using turtle python.
forward(50)
left(90)
forward(100)
left(90)
forward(50)
left(90)
forward(100)
left(90)
Last updated