Files

7 lines
102 B
Python

def f():
a = 1
while a < 10:
<selection>do_smth
a+=1</selection>
print(a)