6 lines
116 B
Python
6 lines
116 B
Python
import sys
|
|
|
|
|
|
def split() -> tuple[str, list[str]]:
|
|
command, *arguments = sys.argv
|
|
return command, arguments
|