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-Thread: 103376,21960280f1d61e84 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!homer!news.glorb.com!news-spur1.glorb.com!news.glorb.com!solaris.cc.vt.edu!news.vt.edu!newsfeed-00.mathworks.com!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: GC in Ada Date: Wed, 14 Feb 2007 14:47:21 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <1169636785.504223.139630@j27g2000cwj.googlegroups.com> <45c99c24$1@news.post.ch> <45c9bdb8$1@news.post.ch> <45CF34A7.5090908@obry.net> <45D207B3.2080101@obry.net> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1171482446 7450 192.74.137.71 (14 Feb 2007 19:47:26 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Wed, 14 Feb 2007 19:47:26 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:miofU6RD7m9quGGJttqB+pBCT7c= Xref: g2news2.google.com comp.lang.ada:9328 Date: 2007-02-14T14:47:21-05:00 List-Id: "Jeffrey R. Carter" writes: > If the program converts the source into another form which can later be > executed by appropriate HW or an emulator, then I call it a > compiler. Well, Ada requires certain errors to be detected at compile time, so it is impossible to write a _pure_ interpreter for Ada -- something like a Unix shell, which executes the first line before even looking at the second line. An Ada implementation has to look at the entire program before running it. But still, the part of Ada-Ed that runs the SETL structures or the bytes or whatever, is an interpreter. I claim Ada-Ed is a hybrid implementation of Ada -- neither pure interpreter nor pure compiler. - Bob