Hi, folks.
This is my first email (and question) here.
I'm a Brazilian professor and Phd student, and I'm developing a web environment to teach programming.
We are using Brython, and turtle is a central feature of my proposal.
Besides running the student code, I would like to check if it is correct.
If I have the code following:
```
for _ in range(4):
turtle.forward(200)
turtle.left(90)
print('End.')
```
'End.' will print before the square is done.
Here, I have two problems:
1. It sounds weird to a newbie to see a command result before the previous ones finished
2. How do I run the suite test only after the code's work is really done?
Is there an out-of-the-box solution for it? Is it possible to make turtle synchronous?
If not, what is the more suitable solution for "discover" if the turtle has done its work?
[]'s
--
Adorilson