diff options
-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)") |