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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1592759aa83d0d45 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-03 12:04:00 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!213.200.246.247!not-for-mail From: Vinzent Hoefler Newsgroups: comp.lang.ada Subject: Re: Suggestion for Ada 200x - Interface inheritance Date: Tue, 03 Jun 2003 21:02:39 +0200 Organization: JeLlyFish software Message-ID: References: NNTP-Posting-Host: 213.200.246.247 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: fu-berlin.de 1054667038 10352678 213.200.246.247 (16 [175126]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:38541 Date: 2003-06-03T21:02:39+02:00 List-Id: Bill Findlay wrote: >On 3/6/03 18:46, in article bbin04$9onrq$1@ID-175126.news.dfncis.de, >"Vinzent Hoefler" wrote: > >> Lionel.DRAGHI@fr.thalesgroup.com wrote: >>=20 >>> | -----Message d'origine----- >>> | De: Bill Findlay [mailto:yaldnifw@blueyonder.co.uk] >>> ... >>> | >=20 >>> | > Example: >>> | > Create (File <=3D> My_File, >>> | > Mode =3D> In_File, >>> | > Name =3D> "My_File", >>> | > Status <=3D Status); >>> | > Pretty clear, isn't it? :-) And could also apply to declaration! >>> |=20 >>> | I hope Status is not of Boolean type! 8-) >>>=20 >>> No, it isn't. I had called it Is_Created. >>=20 >> Well, "<=3D" is a comparison that would create a result of type = Boolean. >> Fortunately you just can't compare Booleans that way. ;-) > >Sorry? Am I missing a joke? Maybe? What would you expect from a call like this: |procedure Create_Conditional (Do_It : Boolean); | ... |Create_Conditional (3 <=3D 5); If I didn't miss anything, this should be legal Ada. Vinzent.