Printing-Notation.html (2171B)
1 <html lang="en"> 2 <head> 3 <title>Printing Notation - klisp Reference Manual</title> 4 <meta http-equiv="Content-Type" content="text/html"> 5 <meta name="description" content="klisp Reference Manual"> 6 <meta name="generator" content="makeinfo 4.13"> 7 <link title="Top" rel="start" href="index.html#Top"> 8 <link rel="up" href="Conventions.html#Conventions" title="Conventions"> 9 <link rel="prev" href="Evaluation-Notation.html#Evaluation-Notation" title="Evaluation Notation"> 10 <link rel="next" href="Error-Messages.html#Error-Messages" title="Error Messages"> 11 <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> 12 <meta http-equiv="Content-Style-Type" content="text/css"> 13 <style type="text/css"><!-- 14 pre.display { font-family:inherit } 15 pre.format { font-family:inherit } 16 pre.smalldisplay { font-family:inherit; font-size:smaller } 17 pre.smallformat { font-family:inherit; font-size:smaller } 18 pre.smallexample { font-size:smaller } 19 pre.smalllisp { font-size:smaller } 20 span.sc { font-variant:small-caps } 21 span.roman { font-family:serif; font-weight:normal; } 22 span.sansserif { font-family:sans-serif; font-weight:normal; } 23 --></style> 24 <link rel="stylesheet" type="text/css" href="css/style.css"> 25 </head> 26 <body> 27 <div class="node"> 28 <a name="Printing-Notation"></a> 29 <p> 30 Next: <a rel="next" accesskey="n" href="Error-Messages.html#Error-Messages">Error Messages</a>, 31 Previous: <a rel="previous" accesskey="p" href="Evaluation-Notation.html#Evaluation-Notation">Evaluation Notation</a>, 32 Up: <a rel="up" accesskey="u" href="Conventions.html#Conventions">Conventions</a> 33 <hr> 34 </div> 35 36 <h4 class="subsection">1.3.3 Printing Notation</h4> 37 38 <p><a name="index-printing-notation-5"></a> 39 Many of the examples in this manual print text when they are 40 evaluated. In examples that print text, the printed text is indicated with 41 ‘<samp><span class="samp">-|</span></samp>’. The value returned by evaluating the form (here 42 <code>#t</code>) follows on a separate line. 43 44 <pre class="example"> ($sequence (write 1) (write 2) #t) 45 -| 1 46 -| 2 47 ⇒ #t 48 </pre> 49 </body></html> 50