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.2 required=5.0 tests=BAYES_00,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: "Scott B. Crawford 0131-314-8253" Subject: Re: HELP:Declaration in ADA?!! Date: 1996/03/28 Message-ID: <8636481128031996/A12025/EAGLE/11A3E2F02200*@MHS>#1/1 X-Deja-AN: 144658491 sender: Ada programming language priority: normal comments: Gated by NETNEWS@AUVM.AMERICAN.EDU content-type: TEXT/PLAIN; CHARSET=US-ASCII importance: normal autoforwarded: false ua-content-id: 11A3E2F02200 disclose-recipients: prohibited mime-version: 1.0 newsgroups: comp.lang.ada x400-mts-identifier: [;8636481128031996/A12025/EAGLE] hop-count: 2 Date: 1996-03-28T00:00:00+00:00 List-Id: >DOES SOMEONE KNOW HOW TO DECLARE LONG_INTEGER IN ADA? DEC Ada, package SYSTEM includes the values of various machine constants: MAX_INT: constant:= 2**31-1; MIN_INT : constant:= -(2**31); type INTEGER_32 is range -2_147_483_648 .. 2_147_483_647; for INTEGER_32'SIZE use 32; type LARGEST_INTEGER is range MIN_INT .. MAX_INT; Hope this helps.