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.
18 lines
223 B
18 lines
223 B
4 years ago
|
def f() -> int:
|
||
|
print("start f")
|
||
|
g()
|
||
|
print("end f")
|
||
|
return 42
|
||
|
|
||
|
|
||
|
def g() -> object:
|
||
|
print("start g")
|
||
|
h()
|
||
|
print("end g")
|
||
|
|
||
|
def h() -> object:
|
||
|
print("start h")
|
||
|
print("end h")
|
||
|
|
||
|
print(f())
|