7 lines
102 B
Python
7 lines
102 B
Python
def first(function):
|
|
return function()
|
|
|
|
def second():
|
|
return "second"
|
|
|
|
result = first(second)
|