Why won't this compile? Why does it come up saying that ordered is an undefined function?
(defun ordered (numbers)
(sort numbers #'<))
(defun printing-ordered (numbers)
(princ (apply #'ordered numbers)))
I am using SBCL, and Emacs with SlIME. The error I get when compiling is:
; compilation unit finished
; Undefined function:
; ORDERED
; caught 1 STYLE-WARNING condition