All pastes #2075024 Raw Edit

Miscellany

public text v1 · immutable
#2075024 ·published 2011-06-05 11:45 UTC
rendered paste body
(setq A '(1 2 3 4 5))

(setq newlist '())

(defun caesar (X newlist d)
 (if (cdr X)
      (progn
       (push (+ (car X) d) newlist)
       (caesar (cdr X) newlist d)
      )
     (push (+ (car X) d) newlist)
     (reverse newlist)
 )
)

(message "%S wird zu %S" A (caesar A newlist 3))