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.7 required=5.0 tests=BAYES_20,INVALID_MSGID, PLING_QUERY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b87bc683630619fa X-Google-Attributes: gid103376,public From: tmoran@bix.com Subject: Re: HELP:Declaration in ADA?!! Date: 1996/03/25 Message-ID: <4j6ra8$egj@news2.delphi.com>#1/1 X-Deja-AN: 144195222 organization: Delphi Internet Services Corporation newsgroups: comp.lang.ada Date: 1996-03-25T00:00:00+00:00 List-Id: >DOES SOMEONE KNOW HOW TO DECLARE LONG_INTEGER IN ADA? type LONG_INTEGER is range -2**31 .. 2**31-1; -- or whatever That might be appropriate, say, if you are doing something with mathematical number theory. If you are dealing with distances or high voltage power lines then type meters is range -1_000_000 .. 1_000_000; type Volts is range -500_000 .. 500_000; might be more appropriate names than 'Long_Integer'.