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

18 lines
166 B
Python

from time import sleep
def foo(x):
print(x)
x = 0
print(x)
foo(x)
while x < 2:
x += 1
print(x)
x += 10
print("x = %d" % x)
while True:
sleep(0.1)