4 lines
96 B
Python
4 lines
96 B
Python
|
__author__ == "Tyrel Souza <tyrelsouza@gmail.com>"
|
||
|
def glue(*args):
|
||
|
return " ".join((args))
|