Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDinko Galetic <dgaletic@everflame.(none)>2010-06-24 19:39:15 (GMT)
committer Dinko Galetic <dgaletic@everflame.(none)>2010-06-24 19:39:15 (GMT)
commit32fe0f5b6b84922a8654b7d38a916898b2fc0050 (patch)
treef5e7ef7b47da506f9274f1893fc317b4ab1d21c1
parente84f76c6e94b0149183872276d10eeb37252dc7c (diff)
Added files which start the introduction and the first lesson of the tutorial to /data/tutorial
-rw-r--r--data/tutorial/Introduction19
-rw-r--r--data/tutorial/Lesson 119
2 files changed, 38 insertions, 0 deletions
diff --git a/data/tutorial/Introduction b/data/tutorial/Introduction
new file mode 100644
index 0000000..c5ebafb
--- /dev/null
+++ b/data/tutorial/Introduction
@@ -0,0 +1,19 @@
+import introduction
+
+introduction.run()
+
+# This lesson is actually just an introduction to programming.
+# From it, you can start getting a feeling of what programming is and
+# practice writing your first lines of code.
+
+
+# This window will only display the instructions.
+# The tutorial will be displayed in the window below this one, and
+# everything you type you will type in that window. Feel free to decrease
+# the size of this window if that will help you use the tutorial.
+#
+# At any time, you can type "quit" to quit the tutorial,
+# "skip" to skip trying out an example.
+#
+# Before everything you type, there will be three > and a whitespace so
+# you can quickly tell what you wrote, and what is from the tutorial.
diff --git a/data/tutorial/Lesson 1 b/data/tutorial/Lesson 1
new file mode 100644
index 0000000..fbf357c
--- /dev/null
+++ b/data/tutorial/Lesson 1
@@ -0,0 +1,19 @@
+import lesson1
+
+lesson1.run()
+
+# From this lesson, you can learn about variables and the "print" command.
+ # You can learn how variables can be named and how to store values in them.
+ # You can learn the basics of printing text on the screen.
+# An important concept you should also know after this lesson is called an "expression".
+
+# This window will only display the instructions.
+# The tutorial will be displayed in the window below this one, and
+# everything you type you will type in that window. Feel free to decrease
+# the size of this window if that will help you use the tutorial.
+#
+# At any time, you can type "quit" to quit the tutorial,
+# "skip" to skip trying out an example.
+#
+# Before everything you type, there will be three > and a whitespace so
+# you can quickly tell what you wrote, and what is from the tutorial.