Advertisement
lisp123456

Untitled

Aug 16th, 2021
59
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 (a)
  2. (let ((color "black"))
  3. (let ((car-make a))
  4. (print (concatenate 'string
  5. "Car Make: "
  6. car-make
  7. " with color "
  8. color)))))
  9.  
  10. (foo "ford")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement