app/site-content/proposals/2009/08/06/test.py
changeset 8 294ff7ac9cb6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/site-content/proposals/2009/08/06/test.py	Thu Aug 06 20:20:36 2009 +0530
@@ -0,0 +1,5 @@
+a, b = 0, 1
+while b < 10:
+    print b,
+    a, b = b, a + b
+