mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
10 lines
75 B
Python
10 lines
75 B
Python
a = 1
|
|
|
|
def foo():
|
|
global b, a
|
|
print a
|
|
a = 2
|
|
print a
|
|
|
|
foo()
|