Advertisement
lisp123456

Untitled

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