Guest User

Untitled

a guest
Oct 5th, 2018
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.49 KB | None | 0 0
  1. ; first
  2.       (let ((s (read-file file))
  3.             (backup (make-pathname
  4.                       :defaults file
  5.                       :directory "/tmp/")))
  6.  
  7. ; second
  8.       (let ((s (read-file file))
  9.             (backup (make-pathname
  10.                       :defaults  file
  11.                       :directory "/tmp/")))
  12.  
  13. ; third
  14.       (let ((s      (read-file file))
  15.             (backup (make-pathname
  16.                       :defaults  file
  17.                       :directory "/tmp/")))
Advertisement
Add Comment
Please, Sign In to add comment