Advertisement
lisp123456

Untitled

Aug 16th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (defun foo (car-make)
  2. (let ((color "blue"))
  3. (declare (special color))
  4. (bar car-make)))
  5.  
  6. (defun bar (car-make)
  7. (print (concatenate 'string
  8. "Car-make: "
  9. " with color "
  10. color)))
  11.  
  12. (foo "Honda")
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement