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.1 required=5.0 tests=BAYES_00, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,77f1de37204ed8a6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-06-04 10:58:20 PST From: "Nacho Robledo" Newsgroups: comp.lang.ada References: <3b1a5cb5_4@news.arrakis.es> Subject: Re: Operator visibility question Date: Mon, 4 Jun 2001 19:55:28 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 NNTP-Posting-Host: 212.163.220.185 Message-ID: <3b1bcc2b_4@news.arrakis.es> X-Trace: 4 Jun 2001 19:58:03 +0100, 212.163.220.185 Organization: Arrakis Servicios y Comunicaciones SLU Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!skynet.be!newsfeeds.belnet.be!naxos.belnet.be!news.belnet.be!news.rediris.es!newsfeed.mad.ttd.net!caladan.arrakis.es Xref: archiver1.google.com comp.lang.ada:8080 Date: 2001-06-04T19:55:28+02:00 List-Id: i don't know which is te problem... I use the clause use with packages with come with Ada but with my own packages i do not do it .... .i prefer to do it like this... -- -- Ignacio Robledo Rosell mailto:rrilpm@arrakis.es http://zipi.fi.upm.es/~g990406 **************************************** "When code matters more than comercials" **************************************** "Robert A Duff" escribi� en el mensaje news:wccae3pfhge.fsf@world.std.com... > "Nacho Robledo" writes: > > > I am not a good ada programmer but try this piece of code: > > > > C: constant Boolean := MT."<"(A+2,B); > > No, please don't. A good style rule is to never use this notation -- if > you have a binary operator, always use infix notation. Say "use type" > if necessary to make that legal. > > > I am not sure if this will run well but i think is the most common thing you > > can do.... > > - Bob