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