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,3796c9f26082a2b8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-31 01:42:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!kibo.news.demon.net!news.demon.co.uk!demon!pipehawk.demon.co.uk!not-for-mail From: john.nospam@nospamassen.nospamdemon.co.uk (John McCabe) Newsgroups: comp.lang.ada Subject: Re: Ada has no continual line(s) ?? Date: Fri, 31 May 2002 08:43:36 GMT Message-ID: <3cf73717.2794688@news.demon.co.uk> References: <3cf652a0.31278796@news.demon.co.uk> <3CF72C07.AB702A38@pea.dk> NNTP-Posting-Host: pipehawk.demon.co.uk X-NNTP-Posting-Host: pipehawk.demon.co.uk:158.152.226.81 X-Trace: news.demon.co.uk 1022834493 nnrp-08:2874 NO-IDENT pipehawk.demon.co.uk:158.152.226.81 X-Complaints-To: abuse@demon.net X-Newsreader: Forte Free Agent 1.21/32.243 Xref: archiver1.google.com comp.lang.ada:25065 Date: 2002-05-31T08:43:36+00:00 List-Id: On Fri, 31 May 2002 09:53:43 +0200, Poul-Erik Andreasen wrote: >It have to bee >Put(" This is a message over more than one line" & >"to illustrate that Ada don ignor newlines completely"); In e.g. C it would have to be: printf("This is a message over more than one line " "to illustrate that C don ignor newlines completely"); You still have to have two separate string constants, although in ANSI C the concatenation is done automatically if the string constants are separated only by whitespace. The use of the '&' operator in Ada makes it much more obvious that you did this intentionally.