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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,95971bf29a745ff4,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-02-13 11:49:59 PST From: "Yates" Subject: Package instance??? Date: Wed, 13 Feb 2002 14:48:56 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Newsgroups: comp.lang.ada NNTP-Posting-Host: 63.141.33.202 Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!cyclone.bc.net!feed.news.msn.com!cpimsnntpa03.news.msn.com Xref: archiver1.google.com comp.lang.ada:19972 Date: 2002-02-13T14:48:56-05: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