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,5265ce03ee8f5252 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-01-08 07:10:10 PST Path: supernews.google.com!sn-xit-03!supernews.com!news-feed.riddles.org.uk!newsengine.sol.net!newspump.sol.net!news.execpc.com!newspeer.sol.net!newsfeed.direct.ca!look.ca!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Ok sorry, it is just a book gives no feedback. Date: 08 Jan 2001 10:01:44 -0500 Organization: NASA Goddard Space Flight Center Message-ID: References: <931r2l$4ai5t$2@ID-25716.news.dfncis.de> <931t08$5u5$1@nnrp1.deja.com> <932632$e0e$1@nnrp1.deja.com> <932an8$ijs$1@nnrp1.deja.com> <93421h$2ju$1@nnrp1.deja.com> <934j5c$eu9$1@nnrp1.deja.com> <937jk6$s6l$1@nnrp1.deja.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 978966855 147 128.183.220.71 (8 Jan 2001 15:14:15 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 8 Jan 2001 15:14:15 GMT User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.6 Xref: supernews.google.com comp.lang.ada:3776 Date: 2001-01-08T15:14:15+00:00 List-Id: Kilgallen@eisner.decus.org.nospam (Larry Kilgallen) writes: > In article <937jk6$s6l$1@nnrp1.deja.com>, Robert Dewar writes: > > > > For example, you cannot add a Put_Line in a pure function, > > and that is often very annoying. > > I supposed it might be annoying to some people, but I detest > that style of debugging. I much prefer to place a breakpoint > (even a conditional breakpoint) that will examine the data in > question rather than change the source. Until I started writing programs for Win95, I agreed with Ted. But even the GNAT debugger can't properly handle breakpoints in a window procedure under Win95 (WinNT is only a little better). So now I'm used to Text_IO.Put_Line for debugging. I do require my unit tests to not rely on modified units; I add child packages instead. Yet another reason to switch to Linux, but there are just so many fun games that don't run there :). -- -- Stephe