Guest User

Untitled

a guest
Jun 8th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.42 KB | None | 0 0
  1. (defun fillpath ()
  2.   (iter (for pair in *pairs*)
  3.     (let* ((sp (stringpair pair))
  4.            (basec (car sp))
  5.            (quotec (cdr sp)))
  6.       (unless (or (member basec *banned* :test 'string=) (member quotec *banned* :test 'string=))
  7.         (setf (gethash basec (gethash quotec *cryptopath*)) (gethash basec *cryptopath*))
  8.         (setf (gethash quotec (gethash basec *cryptopath*)) (gethash quotec *cryptopath*))))))
Advertisement
Add Comment
Please, Sign In to add comment