2024-10-12 17:22:45 -07:00
|
|
|
#require-multiline
|
2024-09-10 21:59:30 -07:00
|
|
|
from os import system
|
|
|
|
from sys import argv
|
|
|
|
if len(argv) > 4:
|
|
|
|
print("This command takes one or zero arugments.")
|
|
|
|
else:
|
|
|
|
if len(argv) == 4:
|
|
|
|
print(argv[3] + ": ")
|
|
|
|
print(""" _ __ __ _ ___
|
|
|
|
| | | \/ | / \ / _ \
|
|
|
|
| | | |\/| | / _ \| | | |
|
|
|
|
| |___| | | |/ ___ \ |_| |
|
|
|
|
|_____|_| |_/_/ \_\___/ """)
|