tests/loop_while.py | raw changeset files shortlog |
1.1 --- a/tests/loop_while.py Sun Jun 14 01:18:05 2009 +0200 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,10 +0,0 @@ 1.4 -#!/usr/bin/env python 1.5 - 1.6 -class C: 1.7 - value = "hello" 1.8 - x = 10 1.9 - while x > 0: 1.10 - subvalue = "world" 1.11 - x = x - 1 1.12 - 1.13 -# vim: tabstop=4 expandtab shiftwidth=4