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,d5b211b0c1ffcf3e X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.219.170 with SMTP id pp10mr2144880pbc.1.1339233935364; Sat, 09 Jun 2012 02:25:35 -0700 (PDT) MIME-Version: 1.0 Path: l9ni33136pbj.0!nntp.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!news.alt.net!news.dizum.com!sewer-output!mail2news From: Nomen Nescio Newsgroups: comp.lang.ada Subject: Re: Practicalities of Ada for app development References: <79c5c9f7-4b72-4990-8961-b3e2db4db79b@qz1g2000pbc.googlegroups.com> Message-ID: Date: Sat, 9 Jun 2012 11:25:05 +0200 (CEST) Mail-To-News-Contact: abuse@dizum.com Organization: mail2news@dizum.com Date: 2012-06-09T11:25:05+02:00 List-Id: wrp wrote: > > I develop small to medium sized tools. Tasks are mostly limited to > text processing, database management, and simple visualization. Ada is lousy for text/string manipulation. Although I'm an Ada enthusiast, I cannot think of a worse language in this regard. The string library is feature-poor, so you'll find yourself writing basic libraries for constructs that are included in many languages. Ada is (by design) a safe language. But the side effect is that strings are arrays of characters and the developer is forced to be mindful of boundaries.. bogged down with detail.