Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ; SLIME 2.22
  2. CL-USER> (cond
  3. (t nil))
  4. NIL
  5. CL-USER> (cond
  6. (t t))
  7. T
  8. CL-USER> (cond
  9. (t (format t "Hi")))
  10. Hi
  11. NIL
  12. CL-USER> (cond
  13. (t (format t "Hi") t))
  14. Hi
  15. T
  16. CL-USER>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement