(defparameter dog "dirty")

(defun washdog ()
"Dog washing function"
(print "Dog washed!")
)

(defun letsleepingdogslie ()
"Leave the doggie alone function"
(print "Aww let the puppy sleep")
)

(if (string= dog "dirty")
(washdog) (letsleepingdogslie))

#lisp #dogwashing