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,cb4b02eafef9cefb X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Re: Difference between ADA and c++ Date: 1997/08/24 Message-ID: <5toq44$lbu$1@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 268307876 Distribution: world References: <33FDD17A.320B@virgin.net> <5to0ts$n9j@drn.zippo.com> <5tnu9s$f6t@drn.zippo.com> X-XXMessage-ID: Organization: Royal Melbourne Institute of Technology Newsgroups: comp.lang.ada Date: 1997-08-24T00:00:00+00:00 List-Id: " Ada: An Ada compiler is required to enforce consistency and strong type checking across separate compilation. The concept of ^^^^^^^^^^^^^^ a program library is built into the language, based on separately ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ compilable modules called "library units" whose names are part of a hierarchical name space." GNAT, probably the most popular Ada95 compiler, does NOT use the program library model, but uses the code-source model, i.e. the traditional model." Gnat does have a program library, just as Intermetrics also has a program library. The library just happens to be implemented as a series of source code files, and not some mysterious black box piece of software. List through the requirements of such a library, and you'll find that the source code model can meet them. Dale