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-30 11:16:00 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!wn1feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc51.ops.asp.att.net.POSTED!not-for-mail Message-ID: <3CF66C0B.E7933652@attbi.com> From: Mark Biggar X-Mailer: Mozilla 4.79 [en]C-{C-UDP; EBM-SONY1} (Win98; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Ada has no continual line(s) ?? References: <3cf652a0.31278796@news.demon.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 12.235.88.57 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc51.ops.asp.att.net 1022782559 12.235.88.57 (Thu, 30 May 2002 18:15:59 GMT) NNTP-Posting-Date: Thu, 30 May 2002 18:15:59 GMT Organization: AT&T Broadband Date: Thu, 30 May 2002 18:15:59 GMT Xref: archiver1.google.com comp.lang.ada:25023 Date: 2002-05-30T18:15:59+00:00 List-Id: hongxun lee wrote: > > Sorry..my Q is How to show a line of code is a continual part of it > preceding statement? > Thanks > Ada is free format language. Statements end when you get to the ';'. So there is no need or continuation markers. If the previous line didn't end in a ';', then this line is always a part of of the same statement. Another way to think about it is that line terminators are treated no different in Ada then space characters as far as statements are concerned. -- Mark Biggar mark.a.biggar@attbi.com