diff options
author | Thing2 <thing2@seacrossedlovers.xyz> | 2025-02-07 14:07:19 -0700 |
---|---|---|
committer | Thing2 <thing2@seacrossedlovers.xyz> | 2025-02-07 14:07:19 -0700 |
commit | 4e0e2fcf1e14b8fe0d07d835d774e21a840588c2 (patch) | |
tree | 70d3ed3efbc6df155afe164c3ea97d73bf2e4b53 /goatNote.py | |
parent | 786388f49939da302d4c3825c0d692dd5060216f (diff) |
beginning the project
Diffstat (limited to 'goatNote.py')
-rw-r--r-- | goatNote.py | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/goatNote.py b/goatNote.py index c16eddb..060660b 100644 --- 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)") |