Files
Pyarmor-Static-Unpack-1shot/tests/input/while_loop.py
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

9 lines
181 B
Python

class Test2:
def count(self):
a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
i = 0
while i < len(a):
print a[i]
i += 1
print 'done'