<?xml version="1.0"?>
<paste-with-annotations>
  <paste>
    <number>
      <integer>52200</integer>
    </number>
    <user>
      <string>faxathisia</string>
    </user>
    <title>
      <string>matrix multiply</string>
    </title>
    <contents>
      <string>(defun matrix-multiply (a b)
  (flet ((col (mat i) (mapcar #'(lambda (row) (elt row i)) mat))
         (row (mat i) (elt mat i)))
    (loop for row from 0 below (length a)
          collect (loop for col from 0 below (length (row b 0))
                        collect (apply #'+ (mapcar #'* (row a row) (col b col)))))))

</string>
    </contents>
    <universal-time>
      <integer>3406231182</integer>
    </universal-time>
    <channel>
      <string>#lispcafe</string>
    </channel>
    <colorization-mode>
      <string></string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <null/>
    </is-unicode>
  </paste>
</paste-with-annotations>