<HTML><BODY><br>Racket Style Guide<br><a href="http://www.ccs.neu.edu/home/matthias/Style/style/Units_of_Code.html">http://www.ccs.neu.edu/home/matthias/Style/style/Units_of_Code.html</a><br>in section 3.2 recommends to use functions below 66 lines.<br><br>But usually fuinctions are like this:<br><br>(define (process-elements elements)<br>     ....<br>     (define (process-one ...) ...)<br>     (define (check-element ...) ...))<br><br> So, 66 lines limit should be applied to whole process-elements with all inner functions or to main body of process-elemets and to every process-one, check-element (in this case total length of process-elements would be 198 lines)?<br><br>-- <br>Roman Klochkov</BODY></HTML>