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,6501d9f1c65bd0d1,start X-Google-Attributes: gid103376,public From: hehmeyerj Subject: Ada 83: Type defaults Date: 1996/09/11 Message-ID: <516mkh$d3m@ryker.dma.gov>#1/1 X-Deja-AN: 179950862 content-type: text/plain; charset=us-ascii organization: Defense Mapping Agency x-url: news:comp.lang.ada mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 1.1N (Macintosh; I; 68K) Date: 1996-09-11T00:00:00+00:00 List-Id: This may be a simple problem but... I have an enumeration type declaration. For example: type x is (A, B, C, D); And I have about three hundred variables of type x scattered throughout 50 packages. How would you default the type to, say A, without going to each individual variable declaration and explicitly defaulting them. (ie y : x := A;) TIA