diff -r 3e6916eb3d2c -r 294ff7ac9cb6 app/site-content/proposals/2009/08/06/test_.py --- /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 +