Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py
new file mode 100644
index 0000000..f11b35a
--- /dev/null
+++ b/__init__.py
@@ -0,0 +1,18 @@
+"""
+An educational environment for learning Python, suitable for beginners
+and children. Inspired by LOGO.
+
+Call `run()` to run it.
+
+PythonTurtle aims to be the most low-threshold way for learning or
+teaching Python. The user is given command of an interactive Python
+shell, similar to IDLE, and is able to use Python functions to move a
+turtle that is displayed on the screen. An illustrated help screen
+demonstrates how to move the turtle and introduces the student to the
+basics of Python programming.
+"""
+
+from pythonturtle import run
+
+if __name__=="__main__":
+ run() \ No newline at end of file