From 4e0e2fcf1e14b8fe0d07d835d774e21a840588c2 Mon Sep 17 00:00:00 2001 From: Thing2 Date: Fri, 7 Feb 2025 14:07:19 -0700 Subject: beginning the project --- goatNote.py | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'goatNote.py') 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)") -- cgit v1.2.3