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.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 109fba,ef0074ec236ba6e3 X-Google-Attributes: gid109fba,public X-Google-Thread: 103376,b19fa62fdce575f9 X-Google-Attributes: gid103376,public X-Google-Thread: 108717,ef0074ec236ba6e3 X-Google-Attributes: gid108717,public X-Google-Thread: 1108a1,ef0074ec236ba6e3 X-Google-Attributes: gid1108a1,public X-Google-Thread: 1014db,ef0074ec236ba6e3 X-Google-Attributes: gid1014db,public X-Google-ArrivalTime: 1994-12-02 08:23:18 PST Path: bga.com!news.sprintlink.net!howland.reston.ans.net!europa.eng.gtefsd.com!news.umbc.edu!eff!blanket.mitre.org!linus.mitre.org!linus!mbunix!eachus From: eachus@spectre.mitre.org (Robert I. Eachus) Newsgroups: comp.lang.ada,comp.lang.c,comp.programming,comp.lang.c++,comp.object Subject: Re: Why don't large companies use Ada? Date: 2 Dec 94 10:32:01 Organization: The Mitre Corp., Bedford, MA. Message-ID: References: <1994Nov29.154220.27952@cognos.com> <3blinp$8dm@gnat.cs.nyu.edu> NNTP-Posting-Host: spectre.mitre.org In-reply-to: dewar@cs.nyu.edu's message of 1 Dec 1994 17:29:13 -0500 Xref: bga.com comp.lang.ada:8185 comp.lang.c:33006 comp.programming:5566 comp.lang.c++:39269 comp.object:9320 Date: 1994-12-02T10:32:01+00:00 List-Id: In article <3blinp$8dm@gnat.cs.nyu.edu> dewar@cs.nyu.edu (Robert Dewar) writes: > Also of course totally irrelevant, counting the number of characters > on the page is NOT the way to determine the best language (otherwise we > would automatically conclude that a language that disallowed comments > was best :-) Nonsense! If you programmed in APL, you would know that APL permits comments. (And of course APL has a special character to begin comments... ;-) (For those not familiar with APL, it is an extremely terse programming language. For example, I know of three extremely short programs which the user to enter a number, and print all primes less than or equal to that number. Each implements a different definition of prime numbers, and the shortest which is sixteen charactes long, is based on Wilson's theorem. The "standard" software engineering approach for APL is called throw-away coding. The idea is to write everything as one-line functions, with several lines of comments in each which explain the interface and intended use. If you need to modify the function, you begin by throwing away the code.) -- Robert I. Eachus with Standard_Disclaimer; use Standard_Disclaimer; function Message (Text: in Clever_Ideas) return Better_Ideas is...