diff --git a/github-tutorial/square.py b/github-tutorial/square.py new file mode 100644 index 0000000..984a45a --- /dev/null +++ b/github-tutorial/square.py @@ -0,0 +1,11 @@ +import turtle + +turtle.forward(100) +turtle.right(90) +turtle.forward(100) +turtle.right(90) +turtle.forward(100) +turtle.right(90) +turtle.forward(100) + +turtle.done() \ No newline at end of file