9 lines
188 B
Python
9 lines
188 B
Python
|
def say_hello(name):
|
||
|
return f"Hello {name}"
|
||
|
|
||
|
def be_awesome(name):
|
||
|
return f"Yo {name}, together we are the awesomest!"
|
||
|
|
||
|
def greet_bob(greeter_func):
|
||
|
return greeter_func("Bob")
|