Contents    Page-10    Prev    Next    Page+10    Index   

Examples


; append two lists
(defun append1 (l m)
  (if (null l)
      m
      (cons (first l) (append1 (rest l) m))))


>(fnmix 'append1 '('(1 2 3) m))
(CONS 1 (CONS 2 (CONS 3 M)))