<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
On Apr 19, 2020, at 2:51 AM, Orm Finnendahl &lt;<a href="mailto:orm.finnendahl@selma.hfmdk-frankfurt.de" class="">orm.finnendahl@selma.hfmdk-frankfurt.de</a>&gt; wrote:<br class="">
<div>
<blockquote type="cite" class=""><br class="Apple-interchange-newline">
<div class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">There
 are more things loop provides which weren't considered essential</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">or
 even useful in the context of a process. IIRC things like</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">&quot;collect&quot;,
 &quot;append&quot; or &quot;into&quot; aren't present. To assemble a complete</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">list
 check the loop chapter in cltl2 here:</span></div>
</blockquote>
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
the loop macro itself supports collect, append and into. &nbsp;
<div class=""><br class="">
<div class="">
<div class="">(loop repeat 10 collect (random 123))</div>
<div class=""><br class="">
</div>
<div class="">(117 63 92 31 90 116 76 99 91 11)</div>
<div class=""><br class="">
</div>
<div class="">(loop repeat 10 append (list 1 2 3))</div>
<div class=""><br class="">
</div>
<div class="">(1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3)</div>
<div class=""><br class="">
</div>
<div class="">(loop repeat 10 collect 456 into foo</div>
<div class="">&nbsp; &nbsp; &nbsp; finally (return (append foo foo)))</div>
<div class=""><br class="">
</div>
<div class="">(456 456 456 456 456 456 456 456 456 456 456 456 456 456 456 456 456 456 456 456)</div>
</div>
<div class=""><br class="">
</div>
<div class="">a process is sort of a loop in the sense that it iterates over time and so uses some of the same keywords but its not a loop per se.</div>
<div class=""><br class="">
</div>
</div>
</body>
</html>