Added help and exit
This commit is contained in:
@@ -1,2 +1,5 @@
|
||||
def main(arg):
|
||||
print("Hi!")
|
||||
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")
|
||||
Reference in New Issue
Block a user