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,7cb9a3b53a2ac8f9 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-07 14:13:09 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!bloom-beacon.mit.edu!howland.erols.net!newsfeed.mathworks.com!news.mathworks.com!uunet!nyc.uu.net!ash.uu.net!xyzzy!nntp From: Jeffrey Carter Subject: Re: Clear screen X-Nntp-Posting-Host: e246420.msc.az.boeing.com Content-Type: text/plain; charset=us-ascii Message-ID: <3BE9B007.E603E133@boeing.com> Sender: nntp@news.boeing.com (Boeing NNTP News Access) Content-Transfer-Encoding: 7bit Organization: The Boeing Company X-Accept-Language: en References: <8BXF7.184242$5A3.69438929@news1.rdc2.pa.home.com> <3BE966CE.8D3628C1@san.rr.com> Mime-Version: 1.0 Date: Wed, 7 Nov 2001 22:04:55 GMT X-Mailer: Mozilla 4.73 [en]C-CCK-MCD Boeing Kit (WinNT; U) Xref: archiver1.google.com comp.lang.ada:16018 Date: 2001-11-07T22:04:55+00:00 List-Id: Larry Kilgallen wrote: > > In article <3BE966CE.8D3628C1@san.rr.com>, Darren New writes: > > David Tumpa wrote: > >> I am using the Aonix compiler on Windows ME and NT 4.0. Can anyone give me > >> the code to clear the screen with this compiler. > > > > for I in 1 .. 500 loop Put_Line end; > ^^^ > end loop For that matter Put_Line requires an argument and must be terminated by a semicolon. New_Line would be better. -- Jeffrey Carter