If I do Cu M-: (to paste the result of the lisp operator into the buffer), and then I do something like:
(progn (setq x 0 l '()) (while(< x 30) (push (random 99) l) (incf x 1)) (nreverse l))
I get:
(89 29 27 23 56 88 37 11 33 20 98 95 ...)
With a finite ellipse. How can this be done? Something like inserting a buffer into the resulting list.
source
share