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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,37c84cd461db9efe,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-14 14:01:43 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!kibo.news.demon.net!demon!shale.ftech.net!news.ftech.net!landlord!stones.force9.net.POSTED!not-for-mail From: "J.Matthews" Newsgroups: comp.lang.ada Subject: Escape codes X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Message-ID: Date: Fri, 14 Mar 2003 21:56:39 -0000 NNTP-Posting-Host: 212.159.50.149 X-Complaints-To: abuse@plus.net.uk X-Trace: stones.force9.net 1047679240 212.159.50.149 (Fri, 14 Mar 2003 22:00:40 GMT) NNTP-Posting-Date: Fri, 14 Mar 2003 22:00:40 GMT Organization: Customer of PlusNet Xref: archiver1.google.com comp.lang.ada:35347 Date: 2003-03-14T21:56:39+00:00 List-Id: Can anyone explain why this doesn't work. I am fairly new to ADA and would appreciate the help! with ada.text_io; use ada.text_io; procedure ClearScreen is begin Put (Item => ASCII.ESC); Put (Item => "[2J"); end ClearScreen; It's meant to clear the screen but all it does is display a small left arrow then [2J Thanks in advance.