8 lines
82 B
Python
Executable File
8 lines
82 B
Python
Executable File
from turtle import *
|
|
|
|
for i in range(4):
|
|
fd(100)
|
|
right(90)
|
|
|
|
exitonclick()
|