<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:'times new roman', 'new york', times, serif;font-size:12pt"><div></div><div><span class="Apple-style-span" style="font-family: 'bookman old style', 'new york', times, serif; ">This works just fine:</span></div><div><font class="Apple-style-span" color="#777777" face="arial, sans-serif" size="3"><span class="Apple-style-span" style="font-size: 11px; line-height: 13px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"><font class="Apple-style-span" color="#000000" face="'bookman old style', 'new york', times, serif" size="4"><span class="Apple-style-span" style="font-size: 16px; line-height: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px;"><div>(map (lambda (l) (apply max l)) '((12 13 14) (75 76 87)))</div><div>---&gt; (14 87)</div><div><br></div><div>But I don't get the Grace app. to
 understand "list-of-lists". Should I make a definition of that first in order to make the "highest-number" function work?</div><div><br></div><div>Also in the loop version I get "&gt;&gt;&gt; Error: list-of-lists: unbound variable".</div><div><br></div><div>Rune (from Norway - no courses in proximity. And hardly any appropriate documentation in Norwegian)</div></span></font></span></font></div><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><div style="font-family:bookman old style, new york, times, serif;font-size:12pt"><font class="Apple-style-span" face="'times new roman', 'new york', times, serif">___</font></div><div style="font-family:bookman old style, new york, times, serif;font-size:12pt"><font class="Apple-style-span" face="'times new roman', 'new york', times, serif">Quotes:</font></div><div style="font-family:bookman old style, new york, times, serif;font-size:12pt"><font class="Apple-style-span" face="'times
 new roman', 'new york', times, serif"><br></font></div><div style="font-family:bookman old style, new york, times, serif;font-size:12pt">(define highest-numbers<br>&nbsp;  (map (lambda (l) (apply max l))&nbsp; list-of-lists))<br><br>(define highest-numbers<br>&nbsp;  (loop for l in list-of-lists<br>&nbsp; &nbsp; &nbsp; &nbsp;  collect (apply max l)))<br><br></div></div><div style="position:fixed"></div>


</div><br>




      </body></html>