forked from swee/MeowNex
8 lines
No EOL
232 B
Text
8 lines
No EOL
232 B
Text
from os import system
|
|
from sys import argv
|
|
if len(argv) > 4:
|
|
print("This command takes one or zero arugments.")
|
|
elif len(argv) == 4:
|
|
print("This is" + argv[3] + "\U0001F913\U0000261D")
|
|
else:
|
|
print("\U0001F913\U0000261D") |