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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.66.146.65 with SMTP id ta1mr1579841pab.19.1395952697500; Thu, 27 Mar 2014 13:38:17 -0700 (PDT) X-Received: by 10.140.95.114 with SMTP id h105mr82956qge.22.1395952697433; Thu, 27 Mar 2014 13:38:17 -0700 (PDT) Path: backlog4.nntp.dca3.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!l13no11922681iga.0!news-out.google.com!du2ni15914qab.0!nntp.google.com!w5no9303295qac.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 27 Mar 2014 13:38:16 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=176.249.53.239; posting-account=L2-UcQkAAAAfd_BqbeNHs3XeM0jTXloS NNTP-Posting-Host: 176.249.53.239 References: <1f0a85a6-ea4d-4d30-8537-0ce9063f992a@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <89a0ea84-83e2-4693-b2ea-ea9da65bbc73@googlegroups.com> Subject: Re: Augusta: An open source Ada 2012 compiler (someday?) From: Lucretia Injection-Date: Thu, 27 Mar 2014 20:38:17 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: number.nntp.dca.giganews.com comp.lang.ada:185379 Date: 2014-03-27T13:38:16-07:00 List-Id: On Thursday, 27 March 2014 20:02:56 UTC, Simon Clubley wrote: > [*] To bring this back on topic, why does something which looks like > Ada have to be called Ada ? Call it something else and get people > using Ada without realising it. :-) I've already mentioned doing this on #Ada, a fork of Ada. Take the basic language, strip it down to the basics and extend, replacing anything that's a little weird. i.e. 1) add exception records type E is exception record My_Data : Integer; end record; 2) User defined types having 'Image and 'Value, which call a subprogram which must be defined if these attributes are to be used - much like the stream operations do. 3) Replace tagged with just class, so: type C is class ... end class; For starters. Luke.