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,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6aa6d133611419f5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-08-27 13:10:27 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.stealth.net!news.stealth.net!solaris.cc.vt.edu!news.vt.edu!msunews!not-for-mail From: "Chad R. Meiners" Newsgroups: comp.lang.ada Subject: Re: Thought this was interesting (OT) Date: Tue, 27 Aug 2002 16:07:45 -0400 Organization: Michigan State University Message-ID: References: <3D6688E1.3A1797CC@san.rr.com> <1030464758.505647@master.nyc.kbcfp.com> Reply-To: "Chad R. Meiners" NNTP-Posting-Host: arctic.cse.msu.edu X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Xref: archiver1.google.com comp.lang.ada:28458 Date: 2002-08-27T16:07:45-04:00 List-Id: "Hyman Rosen" wrote in message news:1030464758.505647@master.nyc.kbcfp.com... > Apropos of this, if you have access to a Windows system, > try running the following simple program there. Make sure > to save all important work first! It just prints out a > string over and over again. It couldn't do anything bad, > could it? Especially not on WinNT or WIn2K, right? > Especially if you have no special privileges, right? :-) > > with text_io; use text_io; > with ada.characters.latin_1; use ada.characters.latin_1; > procedure crash is > begin > loop > put("Hung up!" & HT & BS & BS & BS & BS & BS & BS); > end loop; > end; > hmm... All I get is some garbage followed by a raised ADA.IO_EXCEPTIONS.DEVICE_ERROR : s-fileio.adb:987 which although is a rather strange error, it doesn't crash my Win2K system. :) -CRM