commit 4e0e2fcf1e14b8fe0d07d835d774e21a840588c2 parent 786388f49939da302d4c3825c0d692dd5060216f Author: Thing2 <thing2@seacrossedlovers.xyz> Date: Fri, 7 Feb 2025 14:07:19 -0700 beginning the project Diffstat:
| M | goatNote.py | | | 23 | +++++++++++++++++++---- |
1 file changed, 19 insertions(+), 4 deletions(-)
diff --git a/goatNote.py b/goatNote.py @@ -1,5 +1,20 @@ -''' -Documentation, License etc. +#drop user into a shell +print("enter one of the following commands: list, toggle, change date, view") -@package goatNote -''' +line = input(": ") + +while line != "close": + if line == "list": + print("you said to list :)") + elif line == "toggle": + print("You said toggle :(") + elif line == "change date": + print("CHANGE DATEEE") + elif line == "view": + print("look at me (view)") + else: + print("Invalid command :(") + + line = input(": ") + +print("byee(closing file)")