;;; File containing a simple function example (in-package user) (defun my-name-is (name) "Program to any newcomers other than the Bob" (if (string-equal name "Bob") (format t "Go Away Bob") (format t "Nice to meet you ~A" name) ) )