mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
12 lines
85 B
Python
12 lines
85 B
Python
a = 2
|
|
b = 3
|
|
|
|
|
|
def bar():
|
|
global a, c
|
|
a = a + b
|
|
c = a * 2
|
|
|
|
|
|
bar()
|
|
print(c) |