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=0.1 required=5.0 tests=BAYES_05,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4ef4f2b6e50a48c4 X-Google-Attributes: gid103376,public From: bill Subject: Re: What is ADA? Date: 1999/02/23 Message-ID: <7auet2$qu5@drn.newsguy.com>#1/1 X-Deja-AN: 447517224 References: <36D10384.CB4925C8@GoAway.com> <7arno9$f8$1@nnrp1.dejanews.com> <36D2A554.88EF1F69@Maths.UniNe.CH> Organization: Newsguy News Service [http://www.newsguy.com] Newsgroups: comp.lang.ada Date: 1999-02-23T00:00:00+00:00 List-Id: In article <36D2A554.88EF1F69@Maths.UniNe.CH>, Gautier says... > > >To be clear: large programs, not small. If your program is >less than 10'000 lines, some compilers will refuse to compile >it: "Error at line 9702: End-of-file found. No serious >usage of Ada. No object file produced; please add stuff >and retry.". >And try to hide identifiers like "Bitmap", "Mouse", too. > speaking of large programs. I heared that when the goverment used to pay contractors for code by how counting how many lines of code, a paying some fee per/line, that people used to write large amount of dead code which does nothing but increase the size of the program, as in: if( false ) x:= 1; y:=2; x:=y; y:=2; else -- ok, do real work now, we earned enough goverment money allready :) end if btw, notice that in Java, the above is not possible. Java does not allow code that can't be reached from being compiled. (which can sometimes be annoying actually). bill