fork download
  1. (defun rev (l)
  2. (setq r nil)(dotimes (n (list-size l))
  3. (push (nth n l) r)
  4. return r))
  5. (setq k (rev '(a b c d)))
  6. (print k)
  7.  
Runtime error #stdin #stdout #stderr 0s 38080KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
*** - EVAL: undefined function LIST-SIZE