Download presentation
Presentation is loading. Please wait.
1
Liquid Common Lisp On Suns
2
Getting Lisp to show your result
Lisp on the Suns is set to abbreviate output: It shows you no more than three levels of a list It shows you no more than ten items in a level This probably isn’t what you want These numbers are controlled by variables that you can set A setting of NIL means “no limit”
3
*print-length* USER 1 : 1 > '(a b c d e f g h i j k l m n)
USER 2 : 1 > (setq *print-length* nil) NIL USER 3 : 1 > '(a b c d e f g h i j k l m n) (A B C D E F G H I J K L M N)
4
*print-level* USER 4 : 1 > '(a (b (c (d (e))))) (A (B (C #)))
USER 5 : 1 > (setq *print-level* nil) NIL USER 6 : 1 > '(a (b (c (d (e))))) (A (B (C (D (E)))))
5
The End
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.