(setq first 5 ) 5 (setq second 6) 6 (defun test () "compare first and second." (interactive "p") (cond ((> first second) "hello") ((<= first second) "goodbye"))) test (test) "goodbye"