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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f25e853f410d55da X-Google-Attributes: gid103376,public From: Matthew Heaney Subject: Re: Time to join the fold? Date: 1999/01/31 Message-ID: #1/1 X-Deja-AN: 439035778 Sender: matt@mheaney.ni.net References: <78abg4$cnc$1@its.hooked.net> <78i8s4$hth$1@its.hooked.net> <78iq2m$br9$1@nnrp1.dejanews.com> NNTP-Posting-Date: Sun, 31 Jan 1999 07:45:22 PDT Newsgroups: comp.lang.ada Date: 1999-01-31T00:00:00+00:00 List-Id: dennison@telepath.com writes: > In a severe jam a declare block can be used to get a localized > constant string, or one of the ada.strings packages can be used. Rather odd to describe using a declare block to declare a string object only in a "severe jam," since this is the normal, intended usage! declare Name : constant String := Get_Name (File); begin ... Or declare Name : String := Get_Name (File); begin Make_Uppercase (Name); ...