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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ae9506fd4dcf7090 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-10 08:04:38 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!lnsnews.lns.cornell.edu!newsstand.cit.cornell.edu!news.stealth.net!news.stealth.net!news-out.nuthinbutnews.com!propagator2-sterling!news-in-sterling.newsfeed.com!news-in.nuthinbutnews.com!cyclone1.gnilink.net!spamfinder.gnilink.net!nwrddc02.gnilink.net.POSTED!53ab2750!not-for-mail From: "Justin Birtwell" Newsgroups: comp.lang.ada References: Subject: Re: Concatenation and Characters 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 Message-ID: Date: Thu, 10 Oct 2002 15:04:38 GMT NNTP-Posting-Host: 151.202.46.147 X-Complaints-To: abuse@verizon.net X-Trace: nwrddc02.gnilink.net 1034262278 151.202.46.147 (Thu, 10 Oct 2002 11:04:38 EDT) NNTP-Posting-Date: Thu, 10 Oct 2002 11:04:38 EDT Xref: archiver1.google.com comp.lang.ada:29666 Date: 2002-10-10T15:04:38+00:00 List-Id: Sorry... I declare N as an unitialized Natural. Also I'm using the GNAT compiler. Justin N:Natrual; S:String(1..4):="ABCD"; T:String(1..2):="EF"; U:String(1..N); Begin U(1..6):=S&T; --Constraint Error!! Why? or... U:=S&T; ---Constraint Error! Why? Put(U); end;