Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/math/apples
diff options
context:
space:
mode:
Diffstat (limited to 'data/math/apples')
-rw-r--r--data/math/apples15
1 files changed, 0 insertions, 15 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