Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/tutorial/Lesson 1
blob: fbf357cc63e7d6c18133c4f50266949879138f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.