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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!gandalf.srv.welterde.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Five Years After Date: Wed, 24 Jan 2018 20:51:35 -0600 Organization: JSA Research & Innovation Message-ID: References: <942235344.537649945.074508.laguest-archeia.com@nntp.aioe.org> <288039467.538377555.666858.laguest-archeia.com@nntp.aioe.org> <62033550-4044-450b-9010-beba11f99f4e@googlegroups.com> Injection-Date: Thu, 25 Jan 2018 02:51:36 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="27566"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.7246 Xref: reader02.eternal-september.org comp.lang.ada:50132 Date: 2018-01-24T20:51:35-06:00 List-Id: "Simon Clubley" wrote in message news:p4alg9$ec0$1@dont-email.me... ... > There is however a small core in the Ada language that could bring > benefits elsewhere but without all the overhead of a full blown > Ada implementation. That was the original theory behind the Janus/Ada implementation (way back in 1981). We eventually abandoned it and commited to a full Ada 83 compiler mainly because Ichbiah did such a good job in using each feature to support the others. With the possible exception of tasking (and tasking isn't really optional in a multicore world), pretty much all of the remainder of Ada 83 is needed in order to make a solid core. Otherwise, one ends up having to design replacements for expensive to implement features like up-and-down type resolution (needed to support overloading on result types, and without that, you will have a lot of issues with operator overloading), generics, finalization (if you are dealing with Ada 95), and more. Randy.