5 lines
195 B
Python
Executable File
5 lines
195 B
Python
Executable File
def main(args):
|
|
if args == []:
|
|
print("say_greeting: Hi!")
|
|
elif args == ["-h"] or args == ["--help"]:
|
|
print("say_greeting: Bro is lazy to make this pointless help section") |