I am trying to call a function in lisp that assigns it's parameters to a list and prints them to the console but is is not printing anything to the console. The code looks like the following
(defun make-cd (title artist rating ripped)
(list :title title :artist artist :rating rating :ripped ripped))
(make-cd "Roses" "Kathy Mattea" 7 t)
A call to a make-cd function should return
(:TITLE "Roses" :ARTIST "Kathy Mattea" :RATING 7 :RIPPED T)
How can I fix this problem?