Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorChris Ball <cjb@pullcord.laptop.org>2007-12-08 22:08:58 (GMT)
committer Chris Ball <cjb@pullcord.laptop.org>2007-12-08 22:08:58 (GMT)
commitd293c5fabf7d4c22faad1728459e8f59c694d7df (patch)
treee7844b8308b1277dfbd90092c77f340be3fc8657 /data
parent6ece7099afd7d600ad22e72d27a241845c928877 (diff)
Remove "apples", consolidate times2/times1.
Diffstat (limited to 'data')
-rw-r--r--data/math/apples15
-rw-r--r--data/math/times (renamed from data/math/times2)0
-rw-r--r--data/math/times12
3 files changed, 0 insertions, 17 deletions
diff --git a/data/math/apples b/data/math/apples
deleted file mode 100644
index ee726c7..0000000
--- a/data/math/apples
+++ /dev/null
@@ -1,15 +0,0 @@
-print "Let's do math!"
-
-print "On Monday I picked 22 apples. On Tuesday I picked 12."
-
-print "Now I have: ", 22 + 12
-
-print "My brother says he picked twice as many apples last week."
-
-print "This means he picked: ", (22 + 12) * 2
-
-print "I have 3 friends I would like to give apples."
-
-print "One third of my apples is about: ", (22 + 12) / 3
-
-print "Or, more exactly: ", (22.0 + 12.0) / 3.0
diff --git a/data/math/times2 b/data/math/times
index b764ac0..b764ac0 100644
--- a/data/math/times2
+++ b/data/math/times
diff --git a/data/math/times1 b/data/math/times1
deleted file mode 100644
index 9355f1f..0000000
--- a/data/math/times1
+++ /dev/null
@@ -1,2 +0,0 @@
-for i in range(1,13):
- print i, "x 4 =", (i*4)