comp.lang.ada
 help / color / mirror / Atom feed
From: andrew <andrew.carroll@okstate.edu>
Subject: I think I'm going to learn something
Date: Fri, 09 Nov 2007 08:31:53 -0800
Date: 2007-11-09T08:31:53-08:00	[thread overview]
Message-ID: <1194625913.046972.255140@v3g2000hsg.googlegroups.com> (raw)

I have a situation I don't understand.  Here is my example:

package X
    procedure in_order(root: node_ptr; count: integer := 0);
    procedure post_order(root: node_ptr; count: integer := 0);
...
end X;

package body X
    procedure in_order(root: node_ptr; count: integer := 0) is
       ....
    begin
        ....
    end in_order;

    procedure post_order(root: node_ptr; count: integer := 0) is
        ....
    begin
        ....
    end post_order
end X;

Now, I have a main procedure that calls post_order but the output is
the output that was written in the in_order procedure.  Hmmm........I
don't get it.




             reply	other threads:[~2007-11-09 16:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-09 16:31 andrew [this message]
2007-11-09 16:52 ` I think I'm going to learn something Pascal Obry
2007-11-09 16:58   ` andrew
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox