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,34e6505a3616fb21 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-03-16 13:39:02 PST Newsgroups: comp.lang.ada Path: supernews.google.com!sn-xit-02!supernews.com!news.tele.dk!144.212.100.101!newsfeed.mathworks.com!portc03.blue.aol.com!uunet!dca.uu.net!ash.uu.net!world!bobduff From: Robert A Duff Subject: Re: calander package - Proposal for dates Sender: bobduff@world.std.com (Robert A Duff) Message-ID: Date: Fri, 16 Mar 2001 17:21:05 GMT References: Organization: The World Public Access UNIX, Brookline, MA X-Newsreader: Gnus v5.3/Emacs 19.34 Xref: supernews.google.com comp.lang.ada:5763 Date: 2001-03-16T17:21:05+00:00 List-Id: Christoph Grein writes: > Standard_Names: Month_Names := (To_Unbounded_String ("January"), > To_Unbounded_String ("February"), > To_Unbounded_String ("March"), > To_Unbounded_String ("April"), >... Why not use an enumerated type, and use 'Image to map to strings? (You have to write a Capitalize function if you don't like shouting.) - Bob