JortSort: Difference between revisions

m (added an antecedent for "other")
Line 367:
=={{header|Common Lisp}}==
<lang lisp>
(defun jort-sort (x) (equalp (copy-seq x) (sort x #'< )))
(equalp x (sort (copy-seq x) #'<)))
</lang>
 
3

edits