6 lines
52 B
Python
6 lines
52 B
Python
def f():
|
|
return g()
|
|
def g():
|
|
return f
|
|
|
|
f()() |