8 lines
73 B
Python
8 lines
73 B
Python
z:int = 0
|
|
|
|
def foo(x:int) -> bool:
|
|
global z
|
|
return x > z
|
|
|
|
foo(1)
|