mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
166 B
Python
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)
|