comp.lang.ada
 help / color / mirror / Atom feed
* Why don't large companies use Ada?
@ 1994-11-14  4:17 Jamie Jamison
  1994-11-14 14:19 ` R. William Beckwith
  1994-11-16  5:04 ` Why don't large companies use Ada? Dan Thies
  0 siblings, 2 replies; 259+ messages in thread
From: Jamie Jamison @ 1994-11-14  4:17 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1000 bytes --]

	I am taking an introductory computer science class at the UW and 
we are learning the Ada language. So far it's pretty nice. The language 
seems to lend itself to easy readability, the fact that the language is 
case insensitive is also a nice factor and the language is incredibly 
powerful. We're in the second quarter of this class and we're already 
writing ADT's and generic functions. Ada seems to be pretty neat, strong 
typing, bounds checking and generic functions are all nice language 
features, and from what I've seen Ada is a lot better than C. So why is 
it that the real world, such�as it is, programs in C. Sure, C compilers 
are cheaper, but it seems to me that the labor that you put into writing 
and maintaining the programs is the real cost, and I know that, at least 
for me, writing something in C takes a lot longer than writing something 
in Ada. So why hasn't Ada caught on? Why aren't people developing 
applications for it?


Jamie Jamison
niteowl@u.washington.edu




^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-11-30  5:21 Peter Coffee AC6EN
  0 siblings, 0 replies; 259+ messages in thread
From: Peter Coffee AC6EN @ 1994-11-30  5:21 UTC (permalink / raw)


I think the biggest remaining criticism of C++ is the high incidence
of programs that successfully compile but don't do what was intended.
Ada still makes it a good deal harder to make an error that still results
in compilable code, except of course for coding the wrong algorithm or
something that's equally likely to be recognized by an expert in the
problem domain -- except that Ada's higher readability also improves
the likelihood of catching that class of error as well.



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-01  4:32 Jeff Gray
  1994-12-02 21:25 ` Michael Feldman
  0 siblings, 1 reply; 259+ messages in thread
From: Jeff Gray @ 1994-12-01  4:32 UTC (permalink / raw)



In article <D03AL2.5xw@aston.ac.uk>, Gareth Bromley writes:


>Why should they bother??
>
>Given that most students coming out of college/University will have some
>experience in programming some type of language Pascal, Modula-2/3, C
>and possibly BASIC plus any others and also most colleges/Universities
>provide courses in C, it is totally logical, and more important cost
>saving to send/train employees on C++ courses, and thus program systems
>in C++.

I have not seen a recent survey of language use (in terms of CS-1 and CS-2) in
U.S. universities. The last one that I am aware of, however, placed Ada second 
behind Pascal. Many students are coming out with Ada experience. Why not
utilize that experience?

>Why?
>
>i) Cost. If the user has a basic knowledge of C or other programming language
>then converting to C++ is relatively easy.

Relatively easy? Quickly converting C programmers to C++ may give them an
understanding of the syntactic differences between the two languages but
they will be sorely unprepared for understanding the proper way of applying
the object-oriented paradigm. The result will resemble the AdaTRAN programmers
of the early '80s.

>ii) Ada's complexity. Most new users will quickly come across all Ada's *nice*
>type checking, or special constructs which require a different syntax to normal.
>In other languages these are not required.

Nor are they always available. I have often found the type checking in Ada to
be a blessing rather than a hindrance.

>iii) Support. Virtually every computer system in the world has a C++ compiler,
>and it is being updated continually. Because that is where all the money is.
>Not every computer system in the world has Ada on it, plus most will not be
>powerful enough to run it.                                 ^^^^^^^^^^^^^^^^^ 
^^^^^^^^^^^^^^^^^^^^^^^^^^

Aside from a Commodore 64 or Vic-20 (or even Timex Sinclair), could you give
me an example of some present day machines that can not support an Ada
compiler?


>iv) Libraries, Code already written and available experts. C++ has access straight
>away to all the C code libraries written. Not just a few nice ones, but all
>C library code ever written, one reason the famous COBOL is still around!
>Lots and lots of code has already been written in C++, and also any company can
>go out and get any number of C++ programmers, or even C ones and train them,
>whereas there are fewer Ada programmers.

Lots and Lots of code is also available from some of the repositories like
CARDS, ASSET, AdaNet (is it still called this anymore) and other suppliers.








^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-01 19:06 Bennett, Chip (KTR) ~U
  0 siblings, 0 replies; 259+ messages in thread
From: Bennett, Chip (KTR) ~U @ 1994-12-01 19:06 UTC (permalink / raw)


ron house <house@HELIOS.USQ.EDU.AU> wrote:

> How about "Ada - use it when you want to multiply a length by a length
> and get a length, or when you want to be prevented from dividing an area
> by a length because they have different types."

> (PS: yes, you can fix that by defining zillions of additional *,/,- and +
> functions, but good grief...)

It seems to me that how many functions you have to define depends on how you
approach the problem.  Let's start with the premise that there are many
triples of numbers that exhibit similar relationships.  For example:

     1) length, 2 (squared), area
     2) length, 3 (cubed), volume
     3) length, N, hyperspace  :-)

Or perhaps a different relationship:

     1) speed, time, distance
     2) principle, rate, interest
     3) mass, acceleration, force
     4) current, resistance, voltage
     5) mass, (light speed) squared, energy
     6) large unit of measure, constant, small unit of measure

Now, we ought to be able to create a generic package that declares a set of
allowable functions for a particular relationship (A := B * C, C := A / B,
etc.).  Then we could create a package that declares a set of private types
(i.e. speed, time, and distance) and instantiates the generic package of
math functions using the private types.  Since the types are private they
are limited to the functions in the instantiated generic.  Area := Length **
2 is allowed, but Length := Length ** 2 is not allowed.

In Ada 83 there is a limitation in that we can't extend the set of allowable
functions for some triple that has some _extra_ relationship that the others
don't have, but child packages in Ada 9X would allow for adding new
functions to the private type.

Given that there is a fairly limited set of relationship groups for triples
that make sense in the real world, I doubt you would have to write very many
additional math functions.

All that said, I've never actually tried this, but it seems plausible.  Any
thoughts?

*****************************************************************
* Chip Bennett, GDE Systems Inc | BennettC@j64.stratcom.af.mil  *
* USSTRATCOM/J64213             | Voice (402)294-7360           *
* 901 SAC Blvd, Suite 2B24      | FAX   (402)294-7912           *
* Offutt AFB, NE 68113-6600     | Proud member of Team Ada      *
* Opinions expressed here are my own _so_,  TTFWTW              *
*****************************************************************



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-01 22:08 Bennett, Chip (KTR) ~U
  0 siblings, 0 replies; 259+ messages in thread
From: Bennett, Chip (KTR) ~U @ 1994-12-01 22:08 UTC (permalink / raw)


"Ole-Hjalmar Kristensen TF.DT/DELAB" <ohk@HAL.NTA.NO> wrote:

> Well, I think this illustrates some differences between C++ and Ada :-)
> (anyone knows who is the author of this amusing piece?)
>
> Shooting Yourself in the Foot
     .
     .
     .
     (funny stuff deleted)


This was hilarious.  I don't know about everybody else, but I would love to
see the rest of this article (on the other languages).

*****************************************************************
* Chip Bennett, GDE Systems Inc | BennettC@j64.stratcom.af.mil  *
* USSTRATCOM/J64213             | Voice (402)294-7360           *
* 901 SAC Blvd, Suite 2B24      | FAX   (402)294-7912           *
* Offutt AFB, NE 68113-6600     | Proud member of Team Ada      *
* Opinions expressed here are my own _so_,  TTFWTW              *
*****************************************************************



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-02  5:29 Robert Dewar
  0 siblings, 0 replies; 259+ messages in thread
From: Robert Dewar @ 1994-12-02  5:29 UTC (permalink / raw)


People are furiously cross-posting this thread, and many of the messages
are quite inappropriate outside comp.lang.ada. Please be careful,
inappropriate cross-posting quite understandably antagonizes people.




^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-03 20:49 Paige Vinall
  0 siblings, 0 replies; 259+ messages in thread
From: Paige Vinall @ 1994-12-03 20:49 UTC (permalink / raw)


In INFO-ADA Digest - 3 Dec 1994 - Special issue (item 14)No.  Keith Thompson <ks
t@ALSYS.COM> writes:
>If you're writing new PL/I or Ada code to interface to existing Fortran
>libraries, all you should need to do is swap the indices; there should
>be no need to physically transpose the arrays themselves.  This should

Or you can use ISUB defining in PL/I.  It is a very cool feature which
will transpose the matrix for you.  It allows one copy of the
matrix and then you can define various views of the matrix.  For
example-

   dcl a(0:5, 0:9) float bin;
   dcl A_transpose(0:9, 0:5)   float bin def a(2sub, 1sub);

Matrix A is the real data and A_transpose is a view of the data
transposed.  You can now use A with your PL/I program but pass
A_transpose to the Fortran routine.  However, a real transposed
version of the matrix will be created at each call statement so
the performance would be bad if there were frequent calls to
Fortran.

Paige Vinall - PL/I Development Manager, IBM
Internet: vinall@vnet.ibm.com,  Phone: (408) 463-2106



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-06 13:06 Paige Vinall
  1994-12-07 14:15 ` Norman H. Cohen
  1994-12-09  2:31 ` Michael Feldman
  0 siblings, 2 replies; 259+ messages in thread
From: Paige Vinall @ 1994-12-06 13:06 UTC (permalink / raw)


In INFO-ADA Digest - 5 Dec 1994 (item 11)No.  Michael Feldman <mfeldman@SEAS.GWU
.EDU> writes:
>Yes.
>
>But unless I mis-read the post from the IBM chap the other day,
>ISUB does more than logically swap the indices, it actually
>transposes the array. I don't think I kept that post, but I do
>think that's what he said.
>

If an ISUB dfined array is passed to a procedure, PL/I
will compute an image of it.

>Has PL/1 supported ISUB all along? I do not remember it from my
>PL/1 days 20 or so years ago.

I think so.

Paige Vinall - PL/I Development Manager, IBM
Internet: vinall@vnet.ibm.com,  Phone: (408) 463-2106



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-06 17:05 Bob Wells #402
  0 siblings, 0 replies; 259+ messages in thread
From: Bob Wells #402 @ 1994-12-06 17:05 UTC (permalink / raw)


Michael Feldman <mfeldman@SEAS.GWU.EDU> writes..

> Don't take this personally, but the "all you should..." attitude is, in
> my experience, quite typical of computer folks who don't understand, or
> don't want to understand, what it takes to get a customer to buy.

G'day Michael,
An extension/corollary/variation to this is what I call "just jobs." You
know! When you have some, er, incredibly "competent" person who comes along
and says "Oh that's simple. You just have to ....." Then wanders off with a
look that they have solved the world.

My favourite one of these was when HP-UX was found to be too slow to run
what we wanted to do. His still echoing words were "That's OK, you just
have to rewrite the operating system!"

Yeesh!

@                      -----------------
@          //// ----- ( Flammkuchen?!?! )
@         (o o)        -----------------
@ ----oOO--(_)--OOo--------------------------------------------------------
  Bob Wells    "Hey!  Who took the cork out of my lunch??!" -- W. C. Fields
@ INTERNET: wel@eurocontrol.de                 CompuServe:      100272,3004
@ The Ada WWW Server is http://lglwww.epfl.ch/Ada/                 Team Ada
@ For exciting Ada info enter 'finger wel@s4ecawel.eurocontrol.de'



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-06 18:00 Bob Wells #402
  0 siblings, 0 replies; 259+ messages in thread
From: Bob Wells #402 @ 1994-12-06 18:00 UTC (permalink / raw)


G'day,

Here's a totally non-Ada question.

Way back in the dim dark past while studying at (yes, and graduating from (-: )
Uni. of NSW in Sydney I had to do some programming in PL/1. I'm sure that this
was pronounced as "pee-ell-one." I see that Robert Dewar (among others) writes
it as PL/1, yet I see that Dave Emery (along with others) writes it as PL/I.
Most of the Germans here at Eurocontrol swear "black-and-blue" that it is called
"pee-ell-eye." Yet I remember that the "eye" was supposed to be read as a Roman
numeral.

Is my memory playing tricks? What is the correct version?

BTW Sorry to take up bandwidth from that **incredibly important** "XYZ's Horribl
e
Posts" thread. Want to know about a two phase random bullshit generator? Send me
email for details! PAT. APP. FOR 12345674.

'Avagoodone!
Bob W. (-:

P.S. The PL/(I1) question is a serious one, not important one, but not a joke
question either! (-:



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-07  0:49 Paige Vinall
  0 siblings, 0 replies; 259+ messages in thread
From: Paige Vinall @ 1994-12-07  0:49 UTC (permalink / raw)


The official name is PL/I (as specified by the ANSI standards).  It
stands for "Programming Language One".  The "I" is a roman numeral.
Using an arabic one is incorrect.  Before PL/I, it was briefly called
NPL for "New Programming Language" but the acronym conflicted with Net
Propulsion Laboratory.  "PL/1" is incorrect but used so heavily that I
don't bother correcting people.

Paige Vinall - PL/I Development Manager, IBM
Internet: vinall@vnet.ibm.com,  Phone: (408) 463-2106



^ permalink raw reply	[flat|nested] 259+ messages in thread
* Re: Why don't large companies use Ada?
@ 1994-12-08  2:00 Kenneth G. Hamilton
  1994-12-09 11:49 ` Robert Dewar
  0 siblings, 1 reply; 259+ messages in thread
From: Kenneth G. Hamilton @ 1994-12-08  2:00 UTC (permalink / raw)


If a compiler-maker really wanted to do it (yeah, right, with a gun to
their heads!) there's no reason why a compile-time switch couldn't
switch the order of subscripts in a Fortran array.  Of course, this
would break code that EQUIVALENCEd 2D arrays to 1D ones, but that's
a pretty  horrible thing to do, anyway.  It could even be regarded
as a different KIND by an F90 compiler.
-- 
- Kenneth G. Hamilton



^ permalink raw reply	[flat|nested] 259+ messages in thread

end of thread, other threads:[~1994-12-30 18:20 UTC | newest]

Thread overview: 259+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1994-11-14  4:17 Why don't large companies use Ada? Jamie Jamison
1994-11-14 14:19 ` R. William Beckwith
1994-11-14 22:07   ` Jeff Reinholz
1994-11-15  2:36     ` R. William Beckwith
1994-11-18 22:19     ` Christopher K. Krebs
1994-11-19 17:44       ` Jean D. Ichbiah
1994-11-20  7:09         ` R. William Beckwith
1994-11-20 17:18           ` Robert Dewar
1994-11-20 17:21           ` Robert Dewar
1994-11-20 23:32             ` Cyrille Comar
1994-11-21 15:02             ` R. William Beckwith
1994-11-20 23:37           ` Jean D. Ichbiah
1994-11-21  2:20             ` David Weller
1994-11-23 23:19               ` Jean D. Ichbiah
1994-11-21 14:53             ` R. William Beckwith
1994-11-22 13:56               ` Robert Dewar
1994-11-23 23:40               ` Jean D. Ichbiah
1994-11-22 20:08         ` Michael Feldman
1994-11-21 10:35       ` David Emery
1994-11-14 23:04   ` Robert Temple
1994-11-16 14:14     ` Doug Robertson
1994-11-16 22:38       ` STOP!!! (WAS: Why don't large companies use Ada?) Q Vincent Yin
1994-11-18  0:53         ` Dean Souleles
1994-11-18 13:29         ` Norman H. Cohen
1994-11-16 23:47       ` Why don't large companies use Ada? Robert Dewar
1994-11-23  3:03         ` mat
1994-11-17  3:05       ` Michael Feldman
1994-11-17  3:07       ` Michael Feldman
1994-11-17 19:50       ` Robert C. Lokerson
1994-11-18  3:48         ` Michael Feldman
1994-11-22 16:43       ` James Hopper
1994-11-25 18:32         ` Carlos Perez
1994-11-25 20:26           ` Michael Feldman
1994-11-28  8:47             ` Tarjei Jensen
1994-11-28 16:23               ` Michael Feldman
1994-11-29  5:49                 ` Matt Kennel
1994-11-29 17:11                   ` Michael Feldman
1994-11-29  9:42                 ` Tarjei Jensen
1994-11-29 15:42                 ` Dave Vernest
1994-11-30 15:36                   ` Ole-Hjalmar Kristensen TF.DT/DELAB
1994-11-30 16:46                   ` An Amoeba
1994-11-30 17:39                     ` Jules
1994-11-30 14:05                       ` David Emery
1994-12-01  2:48                         ` R. William Beckwith
1994-12-04 15:06                           ` John Goodsen
1994-12-05  5:04                             ` R. William Beckwith
1994-12-02 15:18                       ` Akopov Mikhail
1994-12-05 14:52                         ` Jules
1994-12-07 20:18                       ` Ada as intro language un033144
1994-12-07 20:25                         ` un033144
1994-12-09  3:05                         ` Michael Feldman
1994-12-01  1:04                     ` Why don't large companies use Ada? David Weller
1994-12-01 14:16                     ` Robert I. Eachus
1994-12-01 22:29                     ` Robert Dewar
1994-12-02  7:57                       ` Scott McLoughlin
1994-12-02 16:50                         ` Andrew Koenig
1994-12-02 10:32                       ` Robert I. Eachus
1994-12-02 22:57                         ` Mike Chapman
1994-12-05 15:59                           ` Norman H. Cohen
1994-12-10 17:37                           ` D'Arcy J.M. Cain
1994-12-11  2:08                             ` M. J. Saltzman
1994-12-11 17:43                             ` Andrew Koenig
1994-12-15 18:06                               ` John Goodsen
1994-12-12 12:58                             ` Con Bradley
1994-12-12 21:13                               ` Ian S Nelson
1994-12-13 10:44                               ` Ross Mather
1994-12-14 16:17                                 ` Peter Seebach
1994-12-03 11:07                       ` Markus Freericks
1994-12-05 16:43                       ` James Kanze US/ESC 60/3/141 #40763
1994-12-05 21:51                         ` Bart_van_der_Worp
1994-12-07 17:49                           ` Chris Dollin
1994-12-08 23:50                             ` Bart_van_der_Worp
1994-12-09  0:07                         ` Alistair James Robert Young
1994-12-09 12:47                           ` Jules
1994-12-10 16:29                             ` Brian Stern
1994-12-13 16:52                             ` Pete Gontier
1994-12-16 19:53                               ` Dr. Richard Botting
1994-12-09 19:15                           ` Robert Firth
1994-12-05 16:43                       ` James Kanze US/ESC 60/3/141 #40763
1994-12-03  9:49                     ` Stephen Benson
1994-12-04 22:59                       ` Michael Feldman
1994-11-30 17:26                   ` Jules
1994-11-30 20:17                   ` Norman H. Cohen
1994-12-05 21:54                     ` Stef Van Vlierberghe
1994-12-06  7:33                       ` Geens Ronald
1994-12-07 20:02                       ` Jules
1994-12-02 17:17                   ` Tucker Taft
     [not found]                 ` <house.786178243@helios>
1994-11-30 23:01                   ` Michael Feldman
1994-12-01 20:35                     ` Matt Kennel
1994-12-04 22:16                       ` Michael Feldman
1994-12-08 14:27                         ` gamache
1994-12-09 10:27                           ` Peter Hermann
1994-12-02  8:23                     ` Paul Johnson
1994-12-02 15:11                       ` Robert I. Eachus
1994-12-05 10:19                         ` Design problems (was Re: Why don't large companies use Ada?) Paul Johnson
1994-12-07  9:48                       ` Why don't large companies use Ada? Stephen J Bevan
1994-12-08  8:16                         ` Paul Johnson
1994-11-30 23:10                   ` Richard Riehle
1994-12-01  3:14                   ` Michael Coburn
1994-12-02 23:46                     ` Bob Duff
1994-12-05 15:08                       ` Jules
1994-12-05 19:10                         ` Bob Duff
1994-12-06 20:10                         ` Physical Types (was Why don't large companies use Ada?) Mike Chapman
1994-12-10 17:38                           ` John Barton
1994-12-01 21:02                   ` Why don't large companies use Ada? Robert Dewar
1994-12-02 21:36                     ` Michael Feldman
1994-12-03 18:06                       ` Strong numeric type checking Tucker Taft
1994-12-03 18:44                       ` Why don't large companies use Ada? David Weller
1994-12-05 15:37                       ` Norman H. Cohen
1994-12-05 16:11                         ` M. J. Saltzman
1994-12-06  2:37                           ` Michael Feldman
1994-12-06 12:33                             ` M. J. Saltzman
1994-12-06 15:30                               ` Arne Dehli Halvorsen
1994-12-05 19:14                         ` Bob Duff
1994-12-06 13:22                         ` Robert Dewar
1994-12-06 17:14                           ` Mark S. Hathaway
1994-12-13 21:47                             ` Spaces in Fortran (was Re: Why don't large companies use Ada?) Michael D Shapiro
1994-12-05 15:23                     ` Why don't large companies use Ada? Norman H. Cohen
1994-12-05 23:48                       ` Thomas M. Breuel
1994-12-01 21:11                   ` Sten Drescher
1994-11-28 14:00             ` Robert Dewar
1994-11-28 14:02             ` Robert Dewar
1994-11-28 14:27               ` Robert I. Eachus
1994-11-29  4:05                 ` Michael Feldman
1994-11-29 18:24                   ` IanMaclure
1994-11-30 16:26                     ` David Weller
1994-12-01 21:24                       ` Robert Dewar
1994-11-30 22:13                     ` COBOL origin (was Re: Why don't large companies use Ada?) Michael D Shapiro
1994-12-12  3:06                       ` COBOL origin Wayne Dernoncourt
1994-12-12 11:45                       ` COBOL origin (was Re: Why don't large companies use Ada?) Robert I. Eachus
1994-12-14 20:50                       ` Dr. Richard Botting
1994-11-30  8:41                   ` Why don't large companies use Ada? Paul Johnson
1994-11-30 23:07                     ` Michael Feldman
1994-11-30 19:53                   ` Davidson Corry
1994-11-30 20:15                   ` Richard Riehle
1994-12-01 15:28                     ` Paige Vinall
1994-12-02  5:25                     ` Robert Dewar
1994-12-02 21:45                       ` Michael Feldman
1994-12-03  5:43                         ` Keith Thompson
1994-12-04 22:39                           ` Michael Feldman
1994-12-05 22:57                             ` Robert Dewar
1994-12-06  2:48                               ` Michael Feldman
1994-12-08  4:10                                 ` Robert Dewar
1994-12-06  3:29                             ` Keith Thompson
1994-12-08 10:49                               ` Robert Dewar
1994-12-08 10:51                               ` Robert Dewar
1994-12-09  1:50                                 ` Keith Thompson
1994-12-09  3:16                                 ` Michael Feldman
1994-12-09 18:30                                   ` Fortran Arrays was: " Richard Riehle
1994-12-09 23:26                                     ` Richard Riehle
1994-12-10 13:50                                   ` Robert Dewar
1994-12-10 13:51                                   ` Robert Dewar
1994-12-06  4:53                             ` Richard A. O'Keefe
1994-12-07  0:46                               ` Robin Vowels
1994-12-07  0:49                               ` Robin Vowels
1994-12-05  0:03                           ` Matt Kennel
1994-12-05 22:59                             ` Robert Dewar
1994-12-06  2:51                               ` Michael Feldman
1994-12-07  5:46                                 ` Kenneth Almquist
1994-12-08  4:11                                 ` Robert Dewar
1994-12-08 17:52                                   ` iSUB in PL/I (was: Re: Why don't large <you-know-whats> use <you-know what>?) Norman H. Cohen
1994-12-10  1:36                                     ` Robert Dewar
1994-12-10 14:07                                     ` Robin Vowels
1994-12-03 21:09                       ` Why don't large companies use Ada? Paige Vinall
1994-12-06  7:16                         ` Richard Riehle
1994-12-07 17:46                           ` David Kehs
1994-12-08 10:48                           ` Robert Dewar
1994-12-07 18:23                   ` Bob Dalgleish
1994-11-30  9:51             ` Andre Spiegel
1994-11-30 22:19               ` greg harvey
1994-11-30 23:08               ` Michael Feldman
1994-12-04 15:32                 ` the X rule (was Re: Why don't large companies use Ada?) John Goodsen
1994-11-15  4:15   ` Why don't large companies use Ada? Brian J. Zimbelman
1994-11-15  9:40     ` David Emery
1994-11-15 16:17       ` Martijn Dekker
1994-11-15 21:03         ` Stop posting Ada stuff to oracle group! Logicon RDA
1994-11-17 20:39         ` Why don't large companies use Ada? Doug Robertson
1994-11-18  4:54           ` Scott McLoughlin
1994-11-18  9:12             ` Peter Hermann
1994-11-18 20:43           ` Hugh Miles
1994-11-22  8:36             ` Paul Johnson
1994-11-23 15:30             ` Object-Oriented Concepts (was: Why don't large companies use Ada?) Jules
1994-11-24 10:19               ` R. Kerr
1994-11-23 20:04           ` What is OO (Was " Don Vick
1994-11-24 10:48             ` R. Kerr
1994-12-06 17:06               ` Sergio R. Sigrist
1994-11-24 16:15             ` Paul Johnson
1994-11-26 10:10               ` What is OO (Was Enough crap about Ada already!) David Weller
1994-11-27 11:58               ` What is OO (Was Why don't large companies use Ada?) Andrew Dunstan
1994-11-29 13:50                 ` Igor Chudov
1994-11-30 17:10                   ` David J Hopwood
1994-11-29 15:48                 ` Shawn Willden
1994-11-29 16:13                   ` Question about class destructors...Easy??? Roy J. Davis
1994-11-30 13:18                     ` zhebu
1994-11-30 14:57                     ` Hartmut Kocher US/ESA 60/1L/2? #5629
1994-11-30 16:53                     ` Chamundi Sabanathan
1994-12-02  6:41                     ` \x01
1994-12-02 13:06                       ` zhebu
1994-12-03 23:13                       ` Steve Clamage
1994-11-30 23:26                   ` What is OO (Was Why don't large companies use Ada?) Robert Dewar
1994-11-23 22:16           ` Why don't large companies use Ada? Gerrit Thomson
1994-11-24  1:23             ` Todd Dunnavant
1994-11-26 16:49               ` Jules
1994-11-30 15:27                 ` John Goodsen
1994-11-16 13:37       ` Why don't we take this thread to Ada and c only? Michael R. Fronheiser
1994-11-21 19:12       ` Why don't large companies use Ada? Jules
1994-11-23 17:25         ` Gary McKee
1994-11-25 14:16           ` Jules
1994-12-30 18:20       ` gjong
1994-11-15 11:55     ` David Weller
1994-11-15 14:34       ` Steven Whatley
1994-11-15 16:06         ` David Weller
1994-11-16 17:51           ` Tony Langdon
1994-11-17  5:04         ` Carlos Perez
1994-11-15 20:39       ` Brian J. Zimbelman
1994-11-16  4:58       ` Dan Thies
1994-11-16 18:21         ` Pete Gontier
1994-11-17 16:54           ` Dirk Broer
1994-11-15 15:56     ` Erland Sommarskog
1994-11-16 17:32       ` James A. Krzyzanowski
1994-11-16 23:04         ` Weiqi Gao
1994-11-19 19:07           ` Jules
1994-11-19 18:43   ` Jules
1994-11-19 19:38     ` Alistair James Robert Young
1994-11-23 15:40       ` Jules
1994-11-24 15:28         ` Alistair James Robert Young
1994-11-24 21:07           ` Brian Duff
1994-11-25  8:28             ` Why don't large companies use Paradox? Nathan Hand
1994-11-30 11:49               ` Tres Seaver
1994-12-02  2:39               ` Jesse C. Wang
1994-11-27 11:55           ` Why don't large companies use Ada? Andrew Dunstan
1994-11-29 17:09             ` Teaching (was: Why don't large companies use Ada?) Michael Feldman
1994-12-06 15:53               ` Jack Beidler
1994-12-06 19:32                 ` Andrew Koenig
1994-12-13 11:19                 ` mat
1994-12-01  3:10             ` s-algol Alistair James Robert Young
1994-12-02 14:09               ` s-algol Robert Dewar
     [not found]           ` <3b2 <cwang.118.0037EF1E@mailbox.syr.edu>
1994-12-03  0:00             ` Why don't large companies use Paradox? wesley
1994-11-22 21:50     ` Ada/Pascal (was Re: Why don't large companies use Ada?) Davidson Corry
1994-11-23 19:43       ` Stefan Tilkov
1994-11-23 23:19         ` Michael Feldman
1994-11-24  6:31           ` Keith Thompson
1994-11-25 13:19         ` John English
1994-11-16  5:04 ` Why don't large companies use Ada? Dan Thies
  -- strict thread matches above, loose matches on Subject: below --
1994-11-30  5:21 Peter Coffee AC6EN
1994-12-01  4:32 Jeff Gray
1994-12-02 21:25 ` Michael Feldman
1994-12-01 19:06 Bennett, Chip (KTR) ~U
1994-12-01 22:08 Bennett, Chip (KTR) ~U
1994-12-02  5:29 Robert Dewar
1994-12-03 20:49 Paige Vinall
1994-12-06 13:06 Paige Vinall
1994-12-07 14:15 ` Norman H. Cohen
1994-12-09  2:31 ` Michael Feldman
1994-12-06 17:05 Bob Wells #402
1994-12-06 18:00 Bob Wells #402
1994-12-07  0:49 Paige Vinall
1994-12-08  2:00 Kenneth G. Hamilton
1994-12-09 11:49 ` Robert Dewar

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