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.
|
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())
|