Advertisement
Guest User

Untitled

a guest
Jun 8th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.30 KB | None | 0 0
  1. (defun find-path3 ()
  2.     (iter (for (k v) in-hashtable *cryptopath*)
  3.       (iter (for (kk vv) in-hashtable v)
  4.         (iter (for (kkk vvv) in-hashtable vv)
  5.           (iter (for (kkkk vvvv) in-hashtable vvv)
  6.             (when (string= k kkkk)
  7.              (setf path3 (push `(,k ,kk ,kkk) *path3*))))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement