Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/while_loop.txt
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

13 lines
229 B
Plaintext

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