From 0a09226b0ec2fb3c28b0cef8e3a24c238b1871d5 Mon Sep 17 00:00:00 2001 From: Maris Lemba Date: Thu, 17 Nov 2016 20:02:07 -0800 Subject: [PATCH] Added greeting function --- code/cattery.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/cattery.py b/code/cattery.py index 8f4525d..d81de98 100644 --- a/code/cattery.py +++ b/code/cattery.py @@ -4,6 +4,9 @@ # Exceptions +def hello(mygreeting): + print(mygreeting) + class CatNotFound(Exception): """The requested cat was not found in the cattery."""