Added help and exit

This commit is contained in:
2026-04-27 12:15:58 -04:00
parent 47a6796e1c
commit 7b2bb509ec
13 changed files with 103 additions and 23 deletions

View File

@@ -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")