projects
/
wiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a54e450
)
fix indenting
author
Philip Durbin
<philipdurbin@gmail.com>
Sun, 24 Mar 2013 15:30:44 +0000
(11:30 -0400)
committer
Philip Durbin
<philipdurbin@gmail.com>
Sun, 24 Mar 2013 15:30:44 +0000
(11:30 -0400)
python/downsides.mdwn
patch
|
blob
|
history
diff --git
a/python/downsides.mdwn
b/python/downsides.mdwn
index
e5deb0b
..
6936359
100644
(file)
--- a/
python/downsides.mdwn
+++ b/
python/downsides.mdwn
@@
-66,12
+66,12
@@
Now, let's talk about Python. You paste the "goodbye world" code in...
... but it doesn't give the desired output above. Rather, it prints this:
-hello world
-hello world
-hello world
-goodbye world
-goodbye world
-goodbye world
+
hello world
+
hello world
+
hello world
+
goodbye world
+
goodbye world
+
goodbye world
You have to go fix the indenting before you get the meaning you want. Here's the version that produces the desired output: