8 lines
130 B
Python
8 lines
130 B
Python
def get_help():
|
|
help = """
|
|
__**Help**__ \n
|
|
Prefix: $
|
|
hello: get a hello back
|
|
"""
|
|
return(help)
|