8 lines
73 B
Python
8 lines
73 B
Python
|
x = 1
|
||
|
print(x)
|
||
|
|
||
|
# local store after load
|
||
|
def f():
|
||
|
print(x)
|
||
|
x = 1
|