You know the saying about monkeys and typewriters? What if one used a random number generator to create a valid binary executable? Sure, most of them would crash, but maybe you'd get something interesting eventually?
Name:
Anonymous2009-12-08 16:56
>>34
I was bored, so here's my implementation
(defun pick-random (sequence)
(let ((length (length sequence)))
(elt sequence (random length))))
(defun make-random-list (source times)
(loop repeat times collect (pick-random source)))