We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b7fb5 commit 8a900deCopy full SHA for 8a900de
book.tex
@@ -10923,12 +10923,13 @@ \chapter{Loops and Dataflow Analysis}
10923
\begin{lstlisting}
10924
(let ([sum 0])
10925
(let ([i 5])
10926
- (begin
10927
- (while (> i 0)
10928
10929
- (set! sum (+ sum i))
10930
- (set! i (- i 1))))
10931
- sum)))
+ (+ 27
+ (begin
+ (while (> i 0)
+ (set! sum (+ sum i))
+ (set! i (- i 1))))
10932
+ sum))))
10933
\end{lstlisting}
10934
The \code{while} loop consists of a condition and a
10935
body.\footnote{The \code{while} loop is not a built-in
0 commit comments