10 lines
85 B
Python
10 lines
85 B
Python
def set_x() -> int:
|
|
global x
|
|
x = 1
|
|
return x
|
|
|
|
x:int = 0
|
|
|
|
set_x()
|
|
print(x)
|