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,LOTS_OF_MONEY autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c76108e955e7f138 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-12-26 07:10:28 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!netnews.com!feed2.news.rcn.net!rcn!chnws02.mediaone.net!chnws06.ne.mediaone.net!24.128.8.70!typhoon.ne.mediaone.net.POSTED!not-for-mail From: "Jeff Creem" Newsgroups: comp.lang.ada References: Subject: Re: Why won't this package compile? X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Message-ID: Date: Wed, 26 Dec 2001 15:08:27 GMT NNTP-Posting-Host: 66.31.5.146 X-Complaints-To: abuse@mediaone.net X-Trace: typhoon.ne.mediaone.net 1009379307 66.31.5.146 (Wed, 26 Dec 2001 10:08:27 EST) NNTP-Posting-Date: Wed, 26 Dec 2001 10:08:27 EST Organization: ATT Broadband Xref: archiver1.google.com comp.lang.ada:18307 Date: 2001-12-26T15:08:27+00:00 List-Id: Apart from your other parse error, the reason that you are getting errors about not completing specification is that the body procedures do not have the same parameters as those in the spec. "Liddle Feesh" wrote in message news:CYkW7.31524$4f7.4360622@news11-gui.server.ntli.net... > In addition, I've created a package body for the program as below... > > Still getting errors apon errors - a parse error, plus errors for not > completing the specification -> which to my best knowledge and ability is > complete. > > Does >anyone< have any pointers? > > Kind Regards, and a Merry Christmas and a Happy New Year to all @ > comp.lang.ada > > > -- > Liddle Feesh > ' O 0 o <"//>< ' o'^ > (Remove UNDERPANTS to reply) > > > > package body Queue_Package is > > procedure add is > begin > -- put_Line("Queue_Package Add node procedure"); > end add; > > procedure remove is > begin > -- Put_Line("Queue_Package Remove node procedure"); > end Remove; > > procedure initalise is > begin > > end initalise; > > procedure is_empty_Queue > begin > > end is_empty_Queue; > > end Queue_Package; > >