I cannot get a simple while loop to work in lisp!
(loop (while (row >= 0))
setf(row (- row 1))
(collect (findIndex row col))
while row is more or equal to 0 i want to decrement row and collect the result given by findIndex method. Suppose the col is given.
Thanks!!!