Files
openide/python/testData/debug/test_set_next_statement.py
2017-09-25 21:03:50 +03:00

15 lines
123 B
Python

def foo(a):
a *= 2
print(a)
x = 0
x += 1
x += 2
while x < 2:
x += 1
print(x)
foo(x)
print("x = %d" % x)