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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f1f875cac34de305,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!proxad.net!freenix!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: "Robert C. Leif" Newsgroups: comp.lang.ada Subject: Re: Advanced scripting languages Date: Sat, 4 Sep 2004 11:25:57 -0700 Organization: Newport Instruments Message-ID: Reply-To: rleif@rleif.com NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1094322390 59073 212.85.156.195 (4 Sep 2004 18:26:30 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Sat, 4 Sep 2004 18:26:30 +0000 (UTC) To: Return-Path: X-Authenticated-User: rleif.rleif.com X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcSSpbArfIyGt0qARhSvx3hrZzmKvg== X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Gateway to the comp.lang.ada Usenet newsgroup" List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: g2news1.google.com comp.lang.ada:3320 Date: 2004-09-04T11:25:57-07:00 I agree with Randy with one caveat: The front-end of the compiler should be the same as the one used for normal compilation; however, the environment should include a group of precompiled packages (such as in .Net or the Java environment) together with a very fast link and bind. This would help for common actions like the management of directories or code development. Presently GNAT employs a specialized Ada like language for their development environment; Alsys had Ada World. Given the speed of the front ends of present Ada compilers, I believe that this part of Ada compiler is suitable for creating batch files. The error messages would be a significant benefit. Bob Leif From: "Randy Brukardt" Subject: Re: Advanced scripting languages (was: Learning Ada83) To: comp.lang.ada@ada-france.org Message-ID: "Bjvrn Persson" wrote in message news:7g2_c.102478$dP1.364156@newsc.telia.net... Marius Amado Alves wrote: >>> It would also be useful and practical to learn one of the advanced >>> scripting languages like Perl or Python or Ruby.... >> >> Wow, they're *advanced* scripting languages now! > >Sure, a *lot* more advanced than bat files. ;-) That's funny, because if it's complicated enough that I can't write a batch file to do it, I'll generally write it in Ada. Bat has If and Goto, and that is enough for simple tasks. Beyond that, I want to be able to fix it and be able to insure that it works... Randy.