From 32fe0f5b6b84922a8654b7d38a916898b2fc0050 Mon Sep 17 00:00:00 2001 From: Dinko Galetic Date: Thu, 24 Jun 2010 19:39:15 +0000 Subject: Added files which start the introduction and the first lesson of the tutorial to /data/tutorial --- (limited to 'data') 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. -- cgit v0.9.1