app/site-content/proposals/2009/08/07/test.py
changeset 20 327b3f0b73bb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/site-content/proposals/2009/08/07/test.py	Sun Aug 09 12:40:14 2009 +0530
@@ -0,0 +1,5 @@
+a, b = 0, 1
+while b < 10:
+    print b,
+    a, b = b, a + b
+