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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,faf469c89f73f91d,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-02-13 13:02:10 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: yates_1900@yahoo.com (Yates) Newsgroups: comp.lang.ada Subject: Package Instances??? Date: 13 Feb 2002 13:02:09 -0800 Organization: http://groups.google.com/ Message-ID: <721b6d80.0202131302.1ccce2ed@posting.google.com> NNTP-Posting-Host: 63.141.33.202 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1013634129 21414 127.0.0.1 (13 Feb 2002 21:02:09 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 13 Feb 2002 21:02:09 GMT Xref: archiver1.google.com comp.lang.ada:19974 Date: 2002-02-13T21:02:09+00:00 List-Id: I am new to Ada. I'd like to know if it is possible to create multiple instances of a package. For example, if I have a package 'My_Package', can I do something like: p1 : My_Package := new My_Package p2 : My_Package := new My_Package ..... I tried this and didn't work. Is there other ways to do it? Thanks Yates