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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,38fc011071df5a27 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-17 01:15:53 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.vmunix.org!fu-berlin.de!uni-berlin.de!dialin-145-254-039-079.arcor-ip.NET!not-for-mail From: "Dmitry A. Kazakov" Newsgroups: comp.lang.ada Subject: Re: Ideas for Ada 200X "left hand side" repeater. Date: Tue, 17 Jun 2003 10:18:38 +0200 Organization: At home Message-ID: References: <3EE7CC70.E1FD3A67@adaworks.com> <3EECA772.4B662024@adaworks.com> Reply-To: mailbox@dmitry-kazakov.de NNTP-Posting-Host: dialin-145-254-039-079.arcor-ip.net (145.254.39.79) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: fu-berlin.de 1055837752 21773622 145.254.39.79 (16 [77047]) User-Agent: KNode/0.7.1 Xref: archiver1.google.com comp.lang.ada:39312 Date: 2003-06-17T10:18:38+02:00 List-Id: Chad R. Meiners wrote: > Or how about > > [Pixel] Screen.Buffer(i) := Pixel + 1; > > where [Pixel] gives an idem name "Pixel" for Screen.Buffer(i) which can be > used (in place of its variable) until it falls out of scope at the > semi-colon. Looks like a label. It could be: <> Screen.Buffer(i) := Pixel + 1; however, it gets a bit tricky: <> Screen.Buffer(i) := Pixel + 1; ... Pixel := Pixel + 1; -- Illegal, Pixel is out of scope ... goto Pixel; -- OK -- Regards, Dmitry A. Kazakov www.dmitry-kazakov.de