All pastes #2074978 Raw Edit

Something

public text v1 · immutable
#2074978 ·published 2011-06-05 09:42 UTC
rendered paste body
(defun groesser(ListA ListB)
    (dolist (x ListA)
       (if (eq (first ListB) x)
           (pop ListB) 
           ()
       (message "%S %S %S"x ListA ListB)
    )
)

(defun kleiner(ListA ListB)
    
)

(defun gleich(ListA ListB)
    
)

(defun abarbeiten(ListA ListB)
    
)

(setq List1 (1 2 (3 5 )))
(setq List2 (1 2 3))