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,af5bf4e3cf0c28b8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-05-31 11:58:18 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!bloom-beacon.mit.edu!howland.erols.net!portc.blue.aol.com.MISMATCH!portc03.blue.aol.com!peerfeed.news.psi.net!filter.news.psi.net!reader.dist.news.psi.net!client!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <9f2s0c$c05$1@newstoo.ericsson.se> Subject: Re: Cannot use NULL as identifier? X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 Message-ID: Date: Wed, 30 May 2001 22:15:42 -0500 NNTP-Posting-Host: 156.46.62.124 X-Trace: client 991335497 156.46.62.124 (Thu, 31 May 2001 14:58:17 EDT) NNTP-Posting-Date: Thu, 31 May 2001 14:58:17 EDT Xref: archiver1.google.com comp.lang.ada:7947 Date: 2001-05-30T22:15:42-05:00 List-Id: McDoobie wrote in message ... >I've written a small program that parses the contents of different >directories and searches for duplicate files. > >I have an assignment that reads > >FilePath : constant string := "tesfile.xxx" & ASCII.NULL; Hopefully, someone has pointed out by now that the name of the charactar is "NUL", not "null"! (My ISP's news server went out, so I missed some messages...). So the above should say "Ascii.Nul". Randy.