7 lines
172 B
Python
7 lines
172 B
Python
def execute(text):
|
|
"""
|
|
Function B - prints the received text parameter
|
|
"""
|
|
print(f"Function B received: {text}")
|
|
return f"Function B processed: {text}"
|