(defun make-escaped-table () (let ((table (make-array '(16 16) :element-type 'character :initial-element #\\))) (dotimes (i 16) (dotimes (j 16) (setf (aref table i j) (code-char (+ (* i 16) j))))) table))