summaryrefslogtreecommitdiffstats
path: root/kturtle/data/square.logo
diff options
context:
space:
mode:
Diffstat (limited to 'kturtle/data/square.logo')
-rw-r--r--kturtle/data/square.logo6
1 files changed, 6 insertions, 0 deletions
diff --git a/kturtle/data/square.logo b/kturtle/data/square.logo
new file mode 100644
index 00000000..9c90ef07
--- /dev/null
+++ b/kturtle/data/square.logo
@@ -0,0 +1,6 @@
+# draw a square
+
+repeat 4 [
+ forward 100
+ turnleft 90
+]