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.4 required=5.0 tests=BAYES_00,PDS_BTC_ID autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d5b211b0c1ffcf3e X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.234.38 with SMTP id ub6mr417369pbc.2.1340301698719; Thu, 21 Jun 2012 11:01:38 -0700 (PDT) MIME-Version: 1.0 Path: l9ni4014pbj.0!nntp.google.com!news1.google.com!news3.google.com!feeder1-2.proxad.net!proxad.net!feeder1-1.proxad.net!ecngs!feeder2.ecngs.de!78.46.240.70.MISMATCH!weretis.net!feeder4.news.weretis.net!nuzba.szn.dk!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Practicalities of Ada for app development Date: Thu, 21 Jun 2012 13:01:31 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <28fb3117d9b184797cf3381d0240b765@msgid.frell.theremailer.net> <145eefe89c8eae1ef97489ba21b94d63@dizum.com> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1340301696 29662 69.95.181.76 (21 Jun 2012 18:01:36 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Thu, 21 Jun 2012 18:01:36 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-RFC2646: Format=Flowed; Original Date: 2012-06-21T13:01:31-05:00 List-Id: "Nomen Nescio" wrote in message news:145eefe89c8eae1ef97489ba21b94d63@dizum.com... ... > Metric's for expressive power are useful for comparing the languages > fitness for a particular purpose. E.g. if the purpose is filtering > e-mail, it would be foolish to neglect to consider the language that > probably has the single most expressive power for that kind of job > (the procmail language). The language was in fact specially designed > just for that purpose. I don't know about that -- learning another language adds a significant time investment, so special purpose languages have to be amazingly good to have any value. (Which they don't, IMHO.) I wrote my spam filter in Ada (and on my own time, it never was intended to be a product), and the text processing was not that much of a problem. Indeed, the only real issue was that I refuse to use "use clauses", and thus a lot of the expressions became unreadable because of "Ada.Strings.Unbounded." everywhere. The less stuborn would not have that problem. I think I spend a lot of time on the GUI, and on the SMTP implementation, but not that much on the string manipulation. Which I suspect mainly demonstrates that people tend to be the most productive using the tools that they are the most familar (and comfortable) with. Randy.