You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
269 B
20 lines
269 B
4 years ago
|
def f(x:int) -> int:
|
||
|
print("start f")
|
||
|
print(x)
|
||
|
g(1, x)
|
||
|
print("end f")
|
||
|
return x
|
||
|
|
||
|
|
||
|
def g(y:int, z:int) -> object:
|
||
|
print("start g")
|
||
|
print(y)
|
||
|
print(z)
|
||
|
h("h")
|
||
|
print("end g")
|
||
|
|
||
|
def h(msg: str) -> object:
|
||
|
print(msg)
|
||
|
|
||
|
print(f(4))
|