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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,68ab861309518ae8,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-19 03:58:49 PST Path: supernews.google.com!newsfeed.google.com!newsfeed.stanford.edu!news.tele.dk!194.213.69.151!news.algonet.se!newsfeed1.telenordia.se!algonet!uab.ericsson.se!erinews.ericsson.se!news.emw.ericsson.se!not-for-mail Message-ID: <3ADEC4E8.954B6830@emw.ericsson.se> From: Sven Nilsson Reply-To: sven.nilsson@emw.ericsson.se Organization: Ericsson Microwave Systems AB X-Mailer: Mozilla 4.75C-EMW [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: enumration using integers? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 19 Apr 2001 12:58:48 +0200 NNTP-Posting-Host: 136.225.182.69 X-Trace: news.emw.ericsson.se 987677928 136.225.182.69 (Thu, 19 Apr 2001 12:58:48 MET DST) NNTP-Posting-Date: Thu, 19 Apr 2001 12:58:48 MET DST Xref: supernews.google.com comp.lang.ada:6992 Date: 2001-04-19T12:58:48+02:00 List-Id: Hello I have a little problem that I don't want to spend time solving... If I want to make an enumerated type using integers, like: type Distance is (10, 20, 30, 40, 50); The compiler will complain about missing identifiers. How do I get the blasted machine to understand that the integers are the identifiers I want? Thanks -Sven