Advertisement
IRCrpg

TYPE= -- is this right?

May 4th, 2023
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ;;; TYPE= on ABCL
  2.  
  3. CL-USER(13): (subtypep 'list '(or null cons))
  4. NIL
  5. NIL
  6.  
  7. CL-USER(18): (subtypep '(or null cons) 'list)
  8. T
  9. T
  10.  
  11. CL-USER(17): (alexandria:type= 'list '(or null cons))
  12. NIL
  13. T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement