From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f2125390ce17553a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-15 05:22:47 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!bloom-beacon.mit.edu!iad-peer.news.verio.net!news.verio.net!newsfeed.vmunix.org!uio.no!newsfeed.song.fi!newsfeed.kolumbus.fi!not-for-mail From: Martti Halminen Newsgroups: comp.lang.ada Subject: Re: I want to ask you All an advice, please Date: Fri, 15 Nov 2002 15:06:59 +0200 Organization: Elisa Internet customer Message-ID: <3DD4F173.717E9167@kolumbus.fi> References: <3dd10fa0_2@news.arcor-ip.de> <3DD11253.7050102@nestcape.net> <3dd2147f_1@news.arcor-ip.de> <3DD3C19A.C0DAD898@kolumbus.fi> NNTP-Posting-Host: uic211i1hel.dial.kolumbus.fi Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: phys-news1.kolumbus.fi 1037366566 5535 62.248.169.211 (15 Nov 2002 13:22:46 GMT) X-Complaints-To: abuse@kolumbus.fi NNTP-Posting-Date: Fri, 15 Nov 2002 13:22:46 +0000 (UTC) X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.10-4GB i686) X-Accept-Language: en Xref: archiver1.google.com comp.lang.ada:30938 Date: 2002-11-15T15:06:59+02:00 List-Id: AG wrote: > > "Martti Halminen" wrote in message > news:3DD3C19A.C0DAD898@kolumbus.fi... > > Georg Bauhaus wrote: > > > > How many levels of nested function application can a human being > > > remember? Try > > > (+ 3 (* 4 (+ 7 6 (- 5 1)) (/ 4 (+ 5 6))) > > > "by hand" for an easy example. The tree isn't unusually high. > > > > > Few Lisp programmers would write it like that. > > > > (+ 3 (* 4 > > (+ 7 6 (- 5 1)) > > (/ 4 (+ 5 6)))) > > would be more likely to be found in actual code. > > The trick in reading Lisp is to leave the bellyaching about parentheses > > to the compiler and editor, and use the indentation to read the code > > structure. > > Unfortunately, in your own example, as posted, there are no visible > indentations. When the message was sent, it did have indentation, and still has when looked at in Google, for example. If you are reading it with a newsreader which with proportional fonts or otherwise clobbers the whitespace, that is your problem. The original version, with leading whitespace converted to underlines: (+ 3 (* 4 ________(+ 7 6 (- 5 1)) ________(/ 4 (+ 5 6)))) - Not that this is in any way a realistic code example, anyway. --