9 lines
130 B
Python
9 lines
130 B
Python
def hello():
|
|
"""Return the string 'From the script'."""
|
|
pass
|
|
|
|
|
|
def goodbye():
|
|
"""Return the string 'Out'."""
|
|
pass
|