Open
Description
When running the program, all the tests pass and the practice is marked successful. However, the GDQUEST BOY displays the turtle teleporting and drawing lines on top of each other. It draws three squares but they are connected at the top, like hanging clothes.
I'm running the app on Windows 10, Firefox browser.
Refreshing the page does not fix the issue.
This is my code:
func run():
position.x = 100;
position.y = 100;
draw_square();
jump(200, 0);
draw_square();
jump(200, 0);
draw_square();
func draw_square():
move_forward(100);
turn_right(90);
move_forward(100);
turn_right(90);
move_forward(100);
turn_right(90);
move_forward(100);
turn_right(90);