Guest User

Untitled

a guest
Feb 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. [1]> (defvar a 0)
  2. A
  3. [2]> (defvar b 1)
  4. B
  5. [3]> (setf (if t a b) 10)
  6. 10
  7. [4]> a
  8. 10
  9. [5]> b
  10. 1
  11. [6]> (setf (if nil a b) 20)
  12. 20
  13. [7]> a
  14. 10
  15. [8]> b
  16. 20
Add Comment
Please, Sign In to add comment