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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4ef4f2b6e50a48c4,start X-Google-Attributes: gid103376,public From: bill Subject: Re: What is ADA? Date: 1999/02/21 Message-ID: <7ar2ej$ec4@drn.newsguy.com>#1/1 X-Deja-AN: 447003197 References: <36D10384.CB4925C8@GoAway.com> Organization: Newsguy News Service [http://www.newsguy.com] Newsgroups: comp.lang.ada Date: 1999-02-21T00:00:00+00:00 List-Id: In article <36D10384.CB4925C8@GoAway.com>, Corvus says... > >More specifically: What does it look like? How would I write a "hello >world" program in Ada? >-- >This is my .SIG file. Enjoy. a good place is to start at http://www.adahome.com , it has links to many Ada places and info on Ada. Ada 'looks' more like Pascal, than C or C++ or Java. It is a strongly typed language, and with more features than Pascal. to write hello world, it will be something like this: with ada.text_io; use ada.text_io; procedure t is begin put_line("hello world"); end t; bill.