Presentation is loading. Please wait.

Presentation is loading. Please wait.

Liquid Common Lisp On Suns.

Similar presentations


Presentation on theme: "Liquid Common Lisp On Suns."— Presentation transcript:

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


Download ppt "Liquid Common Lisp On Suns."

Similar presentations


Ads by Google