comp.lang.ada
 help / color / mirror / Atom feed
From: adam@irvine.com
Subject: Re: Ada vs C++ vs Java
Date: 1999/01/19
Date: 1999-01-19T00:00:00+00:00	[thread overview]
Message-ID: <780so2$u83$1@nnrp1.dejanews.com> (raw)
In-Reply-To: 8p6yan1xger.fsf@Eng.Sun.COM

In article <8p6yan1xger.fsf@Eng.Sun.COM>,
  Mike Coffin <mhc@Eng.Sun.COM> wrote:

>
>   Matthew Heaney <matthew_heaney@acm.org> writes:
>
>   > I am interested in specifics.  List 5 specific language features by
>   > which you conclude Ada is "complex."
>
>   I'll have to answer based on Classic Ada; I haven't had occasion to
>   look seriously at the latest version.
>
>   Here are some broad areas that I think are way too complicated:
>
>   1. Generics.  Ada generics are much more complicated and harder to use
>      than need be.

So don't use them.

>      If you insist on complete run-time type checking,
>      ML's type system is easier to use and more powerful.  (I don't
>      blame Ada for this: Hindley-Milner-style type systems probably
>      didn't exist and certainly weren't widely known.)  I know that
>      there were some efforts to get some type-inference technology into
>      Ada Mark II or whatever it's called, but I don't know if any
>      succeeded.
>
>      On the other hand, if you're of the opinion that exceptions do
>      happen, and that type exceptions are just another kind of
>      exception, OO type systems such as Java and Smalltalk are a *lot*
>      simpler than Ada's.

I don't know enough about ML's type system to comment.  However, I've
never thought of Ada's type checking system as complicated.  You have
types, and for each type you can have subtypes.  When you move stuff
from one variable to another, or from an expression to a parameter, or
whatever, the types have to match.  That's the basic idea.  How hard
is that to understand?  It does get a bit more complicated when Ada
95's tagged types and class-wide types are involved.

>   2. Rendezvous.  Compare accept/select/when, with all their
>      permutations and ramifications, with SR's "in" statement which is
>      much more powerful.  (This is chiefly because "when" clauses can't
>      reference entry parameters in Ada).  In fact, compare all of Ada's
>      interprocess communication with SR's.  SR's is much more powerful
>      and easier to use.  (But I'm biased; I worked on SR back when the
>      world was new :-)

So don't use rendezvous.  (I don't know anything about SR, but your
fictional programmer never mentioned this; he was trying to argue for
using C.)

>   3. Treatment of variables shared between tasks.  Task A changes a
>      variable.  When does task B see the change?  Trying to maintain too
>      much generality made Ada much more complicated than any language I
>      can think of in this regard.  It's not so much that the language
>      rules are complex, it's that writing programs that work reasonably
>      given then weak language rules is so hard.  Anyone know of another
>      language that tries to conflate shared-memory and distributed
>      programming?

So don't use tasks.

>   4. Parameter passing.  Three modes; named parameters; default values
>      (but not for in-out parameters, for some reason).

If you say "for some reason", then you really haven't grasped what the
in-out parameter mode is for.  It's for passing a variable that the
procedure is supposed to modify.  A default value would make no sense.

>      In spite of all
>      the features, the behavior is mostly unspecified for arrays and
>      records.

I fail to see how this is "complicated".  It's really simple.  An "in"
parameter is one that goes IN to the procedure.  The procedure uses it
as INput, not as OUTput.  An "out" parameter is one that the procedure
uses as OUTput; it's not used as INput and should not use whatever
value the parameter has when the procedure starts.  An "in out"
parameter is both INput and OUTput.  The procedure takes its current
value as INput, but may modify the value, i.e. OUTput.  How is this
complicated?  I'm sure my 16-month-old could understand it.  (Well,
that's an exaggeration, but he's very good at taking everything out of
a box and putting it back in, and the concept behind Ada parameter
passing isn't much more difficult that that.)  Meanwhile, in C, if you
declare a parameter type to be a pointer, you can't tell whether the
procedure actually wants to input a pointer, or whether it wants to
input the address of an array, or whether it's trying to emulate Ada's
"in out" parameter.  Is Ada really more complex here?  Which one is
harder to learn, harder to use, harder to read?

As far as being unspecified for arrays and records, that's just not
true.  It works just the same as scalars.  If you have an IN OUT
record or array parameter, the variable used by the caller has its
value passed to the procedure, and the procedure gives the variable a
new value.  Same as for anything else.  What's unspecified is that you
don't know whether the variable gets its new value at the end of the
procedure or at some time before that, but usually that doesn't
matter.  In fact, that's a good feature, because it has allowed
compilers that will pass *small* records and arrays in registers and
lets the procedure work with them efficiently in registers, while in
some languages, your only option is to pass the address of the record
or array and force the procedure to make indirect registers through
that address.  I know, you probably think the only computer around is
the register-challenged Intel 80x86/Pentium, in which this isn't an
issue because there aren't enough registers for passing parameters.

As for default values: So don't use them.

>      Compare with rules of C, Java, or almost any other
>      language: they lack *all* these nifty features and seem to get
>      along fine.

So does assembly language, for that matter.

>   5. Overloading.  Do result types matter?  Do parameter names matter?
>      Do default values matter?  Why, or why not?  And, hey:
>      parameterless subroutines and enumeration literals look sort of the
>      same.  Can they overload each other?  Can they hide each other?  If
>      so, when and where?  It could be worse though, as C++ demonstrates.

So don't use this feature.

Out of the five things you think are "way too complicated", four and a
half of them are things that you don't need to use to program in Ada.
I mean, if your complaint is that "Something I can do easily in C [the
language your fictional programmer wanted to use] is complicated to do
in Ada", you might have a valid argument.  But all these examples are
more of the form "Something is complicated in Ada that C doesn't
support at all."  So how is Ada's "complexity" a negative?  OK, so
tasks might be complex, but if you have a program that doesn't need
them, so what?  And if you have a program that does require this kind
of concept, is it "less complex" to do it in C, where you'd have to
write all the synchronization and task-switching and time-slicing
routines yourself?  Maybe "overloading" seems complex (although I
don't see why), but C doesn't have it at all, so you have to come up
with distinct names for everything---so why can't you just do the same
thing in Ada?  Ada does not put a gun to your head and say you must
understand and use overloading.  It's a nice feature if you want to
use it, but if you don't, don't---why would that be a point against
using the language?

I recently bought Quicken Deluxe 99.  There are a lot of options on
there that I don't understand at all, and I'd have to do a fair amount
of reading to see if I wanted to use them and then to use them
effectively.  So what?  Does this mean I'm supposed to return the
program to the store?  The program does the things I need to do all
the time nicely, and I like it; and as for the other features, maybe
if I have time I'll look into it, but I don't need to know anything
about them in order to use the rest of the program.  Ada is pretty
much the same way, and I just can't understand why this "too complex"
argument is used so often as a reason not to use Ada (particularly by
people who want to use C).  It seems silly.


>   Next time I make a joke I'll make it about something that people don't
>   take so damn seriously.  Death, famine, or nuclear winter maybe. :-)

No, next time you make a joke that's not intended to make a point,
write it in such a way so that it looks like it's not intended to make
a point.  Sometimes humor is just to make people laugh, but sometimes
it's a good form for expressing an opinion.  Since several people
(including myself) have assumed you were attempting the latter, I'd
say that the fault lies in your writing style, not in our being
humor-impaired.  And if you were really trying to make a point, then
expect your point to be criticized.

                                -- Adam

-----------== Posted via Deja News, The Discussion Network ==----------
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    




  reply	other threads:[~1999-01-19  0:00 UTC|newest]

Thread overview: 450+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-01-12  0:00 Ada vs C++ vs Java Leszek Sczaniecki
1999-01-13  0:00 ` Corvus
1999-01-13  0:00   ` Herman
1999-01-13  0:00     ` Craig Garrett
1999-01-13  0:00       ` Michael Trausch
1999-01-14  0:00         ` Martijn Lievaart
1999-01-14  0:00           ` Michael J. Tobler
1999-01-16  0:00         ` Matthew Heaney
1999-01-16  0:00       ` Matthew Heaney
1999-01-16  0:00         ` Craig Garrett
1999-01-14  0:00     ` Jeff Carter
1999-01-15  0:00       ` dewar
1999-01-16  0:00       ` Matthew Heaney
1999-01-18  0:00         ` dennison
1999-01-18  0:00           ` robert_dewar
1999-01-24  0:00         ` Nick Roberts
1999-01-20  0:00       ` Peter Flynn
     [not found]   ` <01be3f41$c1205ba0$5704fbd1@longslide>
1999-01-14  0:00     ` Thaddeus L. Olczyk
1999-01-17  0:00       ` Craig Garrett
1999-01-20  0:00         ` Gerry Quinn
1999-01-14  0:00     ` Tom Maier
1999-01-19  0:00       ` Vladyslav Kosulin
1999-01-13  0:00 ` Michael J. Tobler
1999-01-22  0:00   ` Tov Are Jacobsen
1999-01-13  0:00 ` John Woodruff
1999-01-13  0:00 ` dennison
1999-01-13  0:00 ` Erik Funkenbusch
1999-01-13  0:00   ` Peter
1999-01-13  0:00     ` Corvus
1999-01-13  0:00   ` Ralph Cook
1999-01-13  0:00     ` Erik Funkenbusch
1999-01-13  0:00     ` Bob Munck
1999-01-14  0:00     ` Dave Whipp
1999-01-13  0:00   ` Marin David Condic
1999-01-14  0:00     ` Ken Keys
1999-01-14  0:00       ` John Woodruff
1999-01-15  0:00         ` Ken Keys
1999-01-15  0:00           ` Marc A. Criley
1999-01-15  0:00           ` dennison
1999-01-18  0:00           ` Marin David Condic
1999-01-14  0:00       ` Marin David Condic
1999-01-15  0:00         ` Ken Keys
1999-01-15  0:00           ` dennison
1999-01-15  0:00           ` dennison
1999-01-18  0:00           ` Marin David Condic
1999-01-19  0:00             ` Matthew Heaney
1999-01-19  0:00               ` Marin David Condic
1999-01-15  0:00       ` dennison
1999-01-14  0:00   ` Gerhard Menzl
1999-01-14  0:00     ` John Birch
1999-01-14  0:00       ` Pat Rogers
1999-01-16  0:00         ` John Birch
1999-01-16  0:00           ` Pat Rogers
1999-01-17  0:00           ` Matthew Heaney
1999-01-17  0:00             ` Mike Coffin
1999-01-17  0:00               ` Ell
1999-01-17  0:00               ` Matthew Heaney
1999-01-17  0:00                 ` Mike Coffin
1999-01-17  0:00                   ` Matthew Heaney
1999-01-17  0:00                     ` Mike Coffin
1999-01-19  0:00                       ` adam [this message]
1999-01-18  0:00                         ` kevin
1999-01-20  0:00                           ` Michael J. Tobler
1999-01-19  0:00                         ` Michael Rubenstein
1999-01-19  0:00                           ` robert_dewar
1999-01-21  0:00                           ` Lieven Marchand
1999-01-19  0:00                         ` Mike Coffin
1999-01-20  0:00                           ` Larry Kilgallen
1999-01-21  0:00                             ` adam
1999-01-23  0:00                               ` Simon Wright
1999-01-22  0:00                       ` Matthew Heaney
1999-01-22  0:00                         ` adam
1999-01-23  0:00                           ` Matthew Heaney
1999-01-24  0:00                           ` robert_dewar
1999-02-01  0:00                             ` Robert I. Eachus
1999-02-01  0:00                               ` Al Christians
1999-02-02  0:00                                 ` Jerry van Dijk
1999-01-18  0:00                 ` Joe Gwinn
1999-01-19  0:00                   ` robert_dewar
1999-01-20  0:00                     ` Joe Gwinn
1999-01-21  0:00                       ` dennison
1999-01-21  0:00                         ` robert_dewar
1999-01-21  0:00                       ` robert_dewar
1999-01-22  0:00                         ` Joe Gwinn
1999-01-24  0:00                           ` robert_dewar
1999-01-24  0:00                             ` Joe Gwinn
1999-01-25  0:00                               ` robert_dewar
1999-01-25  0:00                                 ` Joe Gwinn
1999-01-21  0:00                       ` robert_dewar
1999-01-21  0:00                         ` Joe Gwinn
1999-01-27  0:00                     ` Ola Liljedahl
1999-01-27  0:00                       ` Scott Johnson
1999-01-27  0:00                       ` Instruction Set Semantics Nick Roberts
1999-01-28  0:00                         ` robert_dewar
1999-01-28  0:00                       ` Ada vs C++ vs Java robert_dewar
1999-01-17  0:00               ` robert_dewar
1999-02-04  0:00                 ` mll
1999-02-04  0:00                   ` mike
1999-02-04  0:00                     ` John McCabe
1999-02-04  0:00                       ` Hyman Rosen
1999-02-04  0:00                       ` mike
1999-02-05  0:00                         ` John McCabe
1999-02-05  0:00                     ` Stephen Leake
1999-02-06  0:00                       ` Michael Stark
1999-02-08  0:00                         ` Stanley Friesen [Contractor]
1999-02-12  0:00                           ` Michael Stark
1999-02-05  0:00                     ` Richard D Riehle
1999-02-05  0:00                     ` Tucker Taft
1999-02-09  0:00                       ` Fredric L. Rice
1999-02-05  0:00                     ` robert_dewar
1999-02-05  0:00                       ` Ole-Hjalmar Kristensen
1999-02-05  0:00                         ` robert_dewar
1999-02-05  0:00                           ` mike
1999-02-06  0:00                             ` Ole-Hjalmar Kristensen
1999-02-06  0:00                             ` robert_dewar
1999-02-06  0:00                               ` mike
1999-02-08  0:00                                 ` dennison
1999-02-08  0:00                                   ` Al Christians
1999-02-08  0:00                                     ` William Clodius
1999-02-09  0:00                                 ` Fredric L. Rice
1999-02-09  0:00                                   ` Matt Austern
1999-02-08  0:00                               ` Marin David Condic
1999-02-09  0:00                               ` Fredric L. Rice
1999-02-09  0:00                                 ` Marin David Condic
1999-02-09  0:00                             ` Fredric L. Rice
1999-02-09  0:00                               ` Robert I. Eachus
1999-02-06  0:00                           ` Ole-Hjalmar Kristensen
1999-02-08  0:00                             ` Robert I. Eachus
1999-02-08  0:00                               ` mike
1999-02-08  0:00                                 ` Larry Kilgallen
1999-02-09  0:00                                 ` Geoff Bull
1999-02-09  0:00                                   ` atomly
1999-02-09  0:00                                     ` Larry Kilgallen
1999-02-09  0:00                               ` robert_dewar
1999-02-10  0:00                                 ` Ole-Hjalmar Kristensen
1999-02-10  0:00                                   ` robert_dewar
1999-02-10  0:00                                     ` Jean-Pierre Rosen
1999-02-10  0:00                                     ` mike
1999-02-10  0:00                                       ` Al Christians
1999-02-12  0:00                                         ` robert_dewar
1999-02-10  0:00                                       ` nabbasi
1999-02-12  0:00                                       ` robert_dewar
1999-02-11  0:00                                     ` Ole-Hjalmar Kristensen
1999-02-12  0:00                                       ` robert_dewar
1999-02-13  0:00                                         ` Dale Stanbrough
1999-02-15  0:00                                         ` Ole-Hjalmar Kristensen
1999-02-16  0:00                                           ` robert_dewar
1999-02-15  0:00                                       ` P.S. Norby
1999-02-16  0:00                                         ` Ole-Hjalmar Kristensen
1999-02-09  0:00                             ` Fredric L. Rice
     [not found]                           ` <79fnce$iv8@drn.newsguy.c <36beecef.70d8ed5e@pwfl.com>
1999-02-08  0:00                             ` Larry Kilgallen
1999-02-08  0:00                               ` Marin David Condic
1999-02-07  0:00                         ` James S. Rogers
1999-02-07  0:00                           ` mike
1999-02-07  0:00                             ` James S. Rogers
1999-02-07  0:00                               ` mike
1999-02-07  0:00                                 ` atomly
1999-02-08  0:00                                   ` Pascal Obry
1999-02-08  0:00                                   ` robert_dewar
1999-02-08  0:00                                     ` Dan Nagle
1999-02-08  0:00                                 ` Jean-Pierre Rosen
1999-02-08  0:00                               ` Geoff Bull
1999-02-09  0:00                               ` Fredric L. Rice
1999-02-09  0:00                                 ` Marin David Condic
1999-02-07  0:00                             ` Simon Wright
1999-02-09  0:00                               ` robert_dewar
1999-02-09  0:00                                 ` nabbasi
     [not found]                             ` <79 <36BF2098.11E0761B@erols.com>
1999-02-08  0:00                               ` Bjarne Stroustrup
1999-02-09  0:00                                 ` robert_dewar
1999-02-08  0:00                             ` robert_dewar
1999-02-09  0:00                             ` Geoff Bull
1999-02-08  0:00                           ` Ole-Hjalmar Kristensen
     [not found]                           ` <79k65l$s0t@drn.news <36c006b8.fc6c187d@acenet.com.au>
1999-02-09  0:00                             ` Larry Kilgallen
1999-02-09  0:00                       ` Fredric L. Rice
1999-02-09  0:00                         ` Marin David Condic
1999-02-06  0:00                     ` Geoff Bull
1999-02-05  0:00                       ` mike
1999-02-08  0:00                         ` Geoff Bull
1999-02-08  0:00                           ` mike
1999-02-09  0:00                             ` Geoff Bull
1999-02-09  0:00                             ` P.S. Norby
1999-02-08  0:00                           ` Stanley Friesen [Contractor]
1999-02-05  0:00                       ` Andrew Koenig
1999-02-06  0:00                     ` Brian Rogoff
1999-02-08  0:00                       ` mike
1999-02-08  0:00                         ` Brian Rogoff
1999-02-09  0:00                           ` Geoff Bull
1999-02-09  0:00                             ` Brian Rogoff
1999-02-09  0:00                         ` robert_dewar
1999-02-09  0:00                         ` Geoff Bull
1999-02-09  0:00                         ` dennison
1999-01-14  0:00       ` Bjarne Stroustrup
1999-01-16  0:00         ` John Birch
1999-01-15  0:00       ` James Kanze
1999-01-16  0:00         ` John Birch
1999-01-17  0:00           ` Matthew Heaney
1999-01-17  0:00             ` phil
1999-01-17  0:00               ` robert_dewar
1999-01-18  0:00             ` John Birch
1999-01-18  0:00               ` James Kanze
1999-01-18  0:00                 ` John Birch
1999-01-18  0:00                   ` robert_dewar
1999-01-19  0:00                   ` James Kanze
1999-01-18  0:00               ` Dynamic memory? (was Re: Ada vs C++ vs Java) Martijn Lievaart
1999-01-18  0:00                 ` John Birch
1999-01-18  0:00                   ` Martijn Lievaart
1999-01-18  0:00                     ` John Birch
1999-01-18  0:00                       ` John Birch
1999-01-18  0:00                         ` robert_dewar
1999-01-19  0:00                         ` James Kanze
1999-01-18  0:00                       ` Martijn Lievaart
1999-01-18  0:00                       ` robert_dewar
1999-01-18  0:00                         ` dennison
1999-01-18  0:00                           ` robert_dewar
1999-01-19  0:00                             ` news.oxy.com
1999-01-25  0:00                             ` Nick Roberts
1999-01-26  0:00                               ` robert_dewar
1999-01-19  0:00                         ` bourguet
1999-01-19  0:00                         ` Laurent Safa
1999-01-20  0:00                           ` Michael J. Tobler
1999-01-21  0:00                           ` Richard Kenner
1999-01-21  0:00                         ` Georg Bauhaus
1999-01-21  0:00                           ` robert_dewar
1999-01-18  0:00                       ` James Kanze
1999-01-20  0:00                       ` Stanley Friesen [Contractor]
1999-01-18  0:00                     ` robert_dewar
1999-01-18  0:00                   ` Ken Keys
1999-01-26  0:00                     ` Scott Johnson
1999-01-18  0:00               ` Ada vs C++ vs Java robert_dewar
1999-01-18  0:00           ` James Kanze
1999-01-18  0:00             ` John Birch
1999-01-18  0:00               ` James Kanze
1999-01-19  0:00               ` Matthew Heaney
1999-01-15  0:00       ` Gerhard Menzl
1999-01-15  0:00         ` John Birch
1999-01-16  0:00           ` robert_dewar
1999-01-16  0:00             ` Crazy Pete
1999-01-16  0:00               ` robert_dewar
1999-01-16  0:00                 ` Judah Diament
1999-01-16  0:00                   ` bill
1999-01-16  0:00                     ` Al Christians
1999-01-17  0:00                     ` Dennis
1999-01-17  0:00                     ` robert_dewar
1999-01-17  0:00                       ` bill
1999-01-26  0:00                       ` Enforcement of coding standards (was: Ada vs C++ vs Java) Nick Roberts
1999-01-26  0:00                         ` dennison
1999-01-17  0:00                     ` Ada vs C++ vs Java Judah Diament
1999-01-16  0:00             ` Michael J. Tobler
1999-01-16  0:00               ` robert_dewar
1999-01-18  0:00                 ` Draconian coding standards (was: Ada vs C++ vs Java) dennison
1999-01-18  0:00                   ` dewar
1999-01-18  0:00                     ` dennison
1999-01-18  0:00                       ` robert_dewar
1999-01-18  0:00                         ` dennison
1999-01-19  0:00                           ` robert_dewar
1999-01-19  0:00                             ` dennison
1999-01-19  0:00                     ` Simon Wright
1999-01-19  0:00                   ` Bob Munck
1999-01-19  0:00                     ` robert_dewar
1999-01-19  0:00                     ` Aidan Skinner
1999-01-18  0:00             ` Ada vs C++ vs Java dennison
1999-01-18  0:00               ` Larry Kilgallen
1999-01-18  0:00               ` robert_dewar
1999-01-19  0:00                 ` Peter Hend�n
1999-01-19  0:00                   ` robert_dewar
1999-01-19  0:00                 ` Crazy Pete
1999-01-19  0:00                   ` robert_dewar
1999-01-20  0:00                     ` Christopher Browne
1999-01-19  0:00                       ` bill
1999-01-20  0:00                         ` robert_dewar
1999-01-21  0:00                           ` Peter Hend�n
1999-01-20  0:00                         ` robert_dewar
1999-01-20  0:00                         ` dennison
1999-01-20  0:00                           ` robert_dewar
1999-01-20  0:00                             ` dennison
1999-01-21  0:00                               ` dewar
1999-01-21  0:00                                 ` bourguet
1999-01-21  0:00                                 ` dennison
1999-01-20  0:00                             ` dennison
1999-01-21  0:00                               ` robert_dewar
1999-01-21  0:00                               ` Matthew Heaney
1999-01-21  0:00                                 ` Al Christians
1999-01-21  0:00                                   ` Matthew Heaney
1999-01-21  0:00                                     ` Al Christians
1999-01-22  0:00                                       ` Matthew Heaney
1999-01-21  0:00                                         ` bill_1
1999-01-22  0:00                                           ` Matthew Heaney
1999-01-22  0:00                                             ` Ada mode requests (Re: Ada vs C++ vs Java) dennison
1999-01-22  0:00                                               ` Matthew Heaney
1999-01-22  0:00                                                 ` dennison
1999-01-22  0:00                                                 ` David C. Hoos, Sr.
1999-01-24  0:00                                                   ` robert_dewar
1999-01-22  0:00                                               ` David C. Hoos, Sr.
1999-01-24  0:00                                                 ` dewar
1999-01-28  0:00                                                   ` John McCabe
1999-01-29  0:00                                                     ` dewar
1999-01-29  0:00                                                       ` John McCabe
1999-01-30  0:00                                                         ` robert_dewar
1999-01-30  0:00                                                           ` John McCabe
1999-01-29  0:00                                                     ` John McCabe
1999-01-25  0:00                                                 ` John McCabe
     [not found]                                                   ` <36afc1ec.20165240@news.geccs.gecm.com>
1999-01-26  0:00                                                     ` John McCabe
1999-01-27  0:00                                                       ` dennison
     [not found]                                                       ` <36b019e5.897220@news.geccs.gecm.com>
1999-01-28  0:00                                                         ` John McCabe
1999-01-29  0:00                                                           ` dewar
1999-01-29  0:00                                                             ` Samuel Tardieu
1999-01-30  0:00                                                               ` John McCabe
     [not found]                                                           ` <36b170cd.1793333@news.geccs.gecm.com>
1999-01-29  0:00                                                             ` John McCabe
1999-01-22  0:00                                               ` dennison
1999-01-22  0:00                                             ` Ada vs C++ vs Java bill_1
1999-01-22  0:00                                               ` Matthew Heaney
1999-01-23  0:00                                             ` Simon Wright
1999-01-23  0:00                                               ` Matthew Heaney
1999-01-24  0:00                                                 ` Simon Wright
1999-01-24  0:00                                                   ` Matthew Heaney
1999-01-24  0:00                                             ` dewar
     [not found]                                             ` <36af43e6.7584350@news.geccs.gecm.com>
1999-01-26  0:00                                               ` Ada Mode wish list Simon Wright
     [not found]                                               ` <36b04b91.9547583@news.geccs.gecm.com>
1999-01-26  0:00                                                 ` John McCabe
1999-01-22  0:00                                         ` Ada vs C++ vs Java Tarjei Tj�stheim Jensen
     [not found]                                     ` <m3g194bhzh.fsf@fred.muc.de>
1999-01-21  0:00                                       ` Stephen Leake
1999-01-20  0:00                       ` robert_dewar
1999-01-20  0:00                         ` dennison
1999-01-20  0:00                           ` robert_dewar
1999-01-20  0:00                         ` Robert I. Eachus
1999-01-21  0:00                   ` Martin Dowie
1999-01-18  0:00           ` Gerhard Menzl
1999-01-18  0:00             ` robert_dewar
1999-01-15  0:00       ` Wolfgang Denk
1999-01-15  0:00         ` robert_dewar
1999-01-16  0:00           ` Michael J. Tobler
1999-01-25  0:00             ` Real-time dyn allctn (was: Ada vs C++ vs Java) Nick Roberts
1999-01-25  0:00               ` John Birch
1999-01-26  0:00                 ` Nick Roberts
1999-01-27  0:00                   ` John Birch
1999-01-25  0:00               ` robert_dewar
1999-01-26  0:00                 ` Nick Roberts
1999-01-28  0:00                   ` dmitrik
1999-01-29  0:00                     ` Nick Roberts
1999-01-25  0:00               ` Niklas Holsti
1999-01-26  0:00                 ` Nick Roberts
1999-01-15  0:00         ` Ada vs C++ vs Java Herman
1999-01-15  0:00         ` Ola Liljedahl
1999-01-16  0:00         ` John Birch
1999-01-14  0:00   ` Michael J. Tobler
1999-01-14  0:00     ` Erik Funkenbusch
1999-01-14  0:00       ` Larry Kilgallen
1999-01-19  0:00       ` Chris Gray
1999-01-16  0:00   ` Matthew Heaney
1999-01-16  0:00     ` Matthew Heaney
1999-01-18  0:00     ` Ken Keys
1999-01-19  0:00       ` Tucker Taft
1999-01-19  0:00       ` Matthew Heaney
1999-01-13  0:00 ` Tucker Taft
1999-01-14  0:00   ` Emil Rojas
1999-01-13  0:00 ` Peter Amey
1999-01-13  0:00   ` Marin David Condic
1999-01-14  0:00     ` Chris Gray
1999-01-14  0:00       ` Tom Maier
1999-01-21  0:00         ` Brent A Ellingson
1999-01-14  0:00     ` Ola Liljedahl
1999-01-14  0:00       ` Marin David Condic
1999-01-15  0:00         ` Ola Liljedahl
1999-01-15  0:00           ` Marin David Condic
1999-01-14  0:00   ` Crazy Pete
1999-01-15  0:00     ` Markus Kuhn
1999-01-15  0:00       ` Peter
1999-01-15  0:00         ` Larry Kilgallen
1999-01-15  0:00         ` David C. Hoos, Sr.
1999-01-16  0:00         ` Tucker Taft
1999-01-13  0:00 ` Herman
1999-01-13  0:00   ` Marin David Condic
1999-01-15  0:00     ` David R. Conrad
1999-01-15  0:00       ` robert_dewar
1999-01-16  0:00         ` Bob Munck
1999-01-16  0:00         ` Michael J. Tobler
1999-01-15  0:00           ` Al Christians
1999-01-16  0:00             ` Michael J. Tobler
1999-01-16  0:00               ` robert_dewar
1999-01-16  0:00             ` robert_dewar
1999-01-16  0:00           ` robert_dewar
1999-01-24  0:00         ` COBOL/Top-Down prog'g (was: Ada vs C++ vs Java) Nick Roberts
1999-01-25  0:00           ` robert_dewar
1999-01-22  0:00     ` Ada vs C++ vs Java Patrick Wibbeler
1999-01-26  0:00       ` Ken
1999-01-27  0:00         ` Scott Johnson
1999-01-26  0:00       ` Marin David Condic
1999-01-27  0:00         ` Peter Amey
1999-01-29  0:00         ` P.S. Norby
1999-01-27  0:00       ` Robert Garskof
1999-01-27  0:00         ` Jay O'Connor
1999-01-28  0:00           ` Marin David Condic
1999-01-28  0:00             ` Joshua fit de wall
1999-01-29  0:00               ` Herman
1999-01-31  0:00             ` Ruth Ivimey-Cook
1999-01-31  0:00               ` him/her: was: " robert_dewar
1999-01-13  0:00 ` Bob Cousins
1999-01-14  0:00   ` dennison
1999-01-14  0:00   ` jim.hyslop
1999-01-15  0:00     ` robert_dewar
1999-01-13  0:00 ` Marin David Condic
1999-01-13  0:00   ` Peter
1999-01-14  0:00     ` Michael J. Tobler
1999-01-15  0:00       ` robert_dewar
1999-01-15  0:00       ` Larry Kilgallen
1999-01-15  0:00       ` dewar
1999-01-14  0:00     ` dennison
1999-01-14  0:00     ` Peter Sch�ller
1999-01-13  0:00   ` Richard Krehbiel
1999-01-13  0:00     ` Marin David Condic
1999-01-13  0:00     ` Dave Hansen
1999-01-14  0:00     ` dennison
1999-01-15  0:00       ` dewar
1999-01-15  0:00         ` dennison
1999-01-13  0:00   ` David Gillon
1999-01-24  0:00     ` Y2.1K (was: Ada vs C++ vs Java) Nick Roberts
1999-02-05  0:00       ` Robert A Duff
1999-02-05  0:00         ` robert_dewar
1999-01-14  0:00 ` Ada vs C++ vs Java Pete Becker
1999-01-15  0:00   ` Scott Johnson
1999-01-15  0:00     ` Larry Kilgallen
1999-01-16  0:00     ` Matthew Heaney
1999-01-18  0:00     ` James Kanze
1999-01-19  0:00       ` Scott Johnson
     [not found] ` <01be3f5e$26453ca0$5704fbd1@longslide>
1999-01-14  0:00   ` Siamak Kaveh
1999-01-16  0:00     ` Craig Garrett
1999-01-18  0:00       ` Ken Keys
1999-01-15  0:00 ` Bruce Detter
1999-01-18  0:00   ` John Birch
1999-01-18  0:00     ` Bruce Detter
1999-01-19  0:00       ` Thanks everyone! (was Re: Ada vs C++ vs Java) Martijn Lievaart
1999-01-19  0:00         ` John Birch
1999-01-19  0:00           ` Scott Johnson
1999-01-19  0:00           ` Bob Cousins
1999-01-22  0:00 ` Ada vs C++ vs Java Dr. Hubert B. Keller
1999-01-22  0:00   ` Bob Cousins
1999-01-22  0:00     ` Roedy Green
  -- strict thread matches above, loose matches on Subject: below --
1999-01-13  0:00 Leszek Sczaniecki
1999-01-13  0:00 ` Stanley R. Allen
1999-01-13  0:00 ` Network
1999-01-14  0:00   ` Ken Keys
1999-01-15  0:00   ` Matthew Heaney
1999-01-13  0:00 ` David A. Frantz
1999-01-14  0:00   ` forsyth
1999-01-14  0:00     ` Marin David Condic
1999-01-15  0:00     ` robert_dewar
     [not found] ` <369CF2CF.440F413C@hercii.mar.lmco.com>
1999-01-16  0:00   ` bob
     [not found] <m3k8yhy6fe.fsf@fred.muc.de>
1999-01-21  0:00 ` Tucker Taft
1999-01-21  0:00   ` forsyth
1999-01-22  0:00     ` Tucker Taft
1999-01-25  0:00       ` Walter Mallory
replies disabled

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