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-Thread: 103376,1dfb504f4080bb06 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!news3.google.com!news.glorb.com!wn14feed!worldnet.att.net!12.120.4.37!attcg2!ip.att.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: two Ada95 syntax questions Date: 9 Mar 2005 13:12:04 -0600 Organization: LJK Software Message-ID: References: <455a31fd.0503091021.7650206e@posting.google.com> NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1110395470 5672 192.135.80.34 (9 Mar 2005 19:11:10 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Wed, 9 Mar 2005 19:11:10 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:8970 Date: 2005-03-09T13:12:04-06:00 List-Id: In article <455a31fd.0503091021.7650206e@posting.google.com>, robertfm@eforell.com (bob) writes: > Does Ada95 support multi-line comments? (i.e. /*�.*/) Seems like I > remember some compilers do though I don't see this in the LRM. No, it was explicitly _not_ included in the language because of the hazard of a missing comment terminator. > Does it support multi-line extensions? (i.e.: > > Blah blah\ > Blah -- blahs all on same line If I understand the question, yes. Statements can span lines, although literal strings cannot. For that, one would say: Warning : constant STRING := "Danger, " & "Will Robinson";