comp.lang.ada
 help / color / mirror / Atom feed
From: Tuan Anh Nguyen <tanguyen@nps.navy.mil>
Subject: ADA FUNCTIONS TO PROCEDURES
Date: Wed, 8 Mar 1995 03:24:15 GMT
Date: 1995-03-08T03:24:15+00:00	[thread overview]
Message-ID: <D53qsF.GKx@taurus.cs.nps.navy.mil> (raw)

Hi,
I'm looking for a utility program that would allow me to convert all
functions into procedures.
For example:

functions equal(Left:  in int;
                Right: in int) return Boolean;

in the specification add the following:

procedure equal(Left:   in int;
                Right:  in int;
                Result: in Boolean);

and in the body add the following:


procedure equal(Left:   in int;
                Right:  in int;
                Result: in Boolean) is
begin
   Result := equal(Left,Right);
end equal;


Please email to tanguyen@nps.navy.mil
Thanks





             reply	other threads:[~1995-03-08  3:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1995-03-08  3:24 Tuan Anh Nguyen [this message]
1995-03-09 12:05 ` ADA FUNCTIONS TO PROCEDURES Robert Dewar
1995-03-09 12:06 ` Robert Dewar
  -- strict thread matches above, loose matches on Subject: below --
1995-03-10 15:56 CONDIC
1995-03-10 22:20 ` Henri Altarac
1995-03-11 16:26   ` Pug 156
1995-03-11 21:27   ` James A. Krzyzanowski
1995-03-11 22:24     ` David Weller
1995-03-12  3:21       ` Henri Altarac
1995-03-13 19:34         ` Bob Kitzberger
1995-03-13 17:39       ` James A. Krzyzanowski
replies disabled

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