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 X-Google-Attributes: gid103376,public From: tmoran@bix.com (Tom Moran) Subject: Re: What is ADA? Date: 1999/02/22 Message-ID: <36d10576.41783508@news.pacbell.net>#1/1 X-Deja-AN: 447001395 References: <36D10384.CB4925C8@GoAway.com> X-Complaints-To: abuse@pacbell.net X-Trace: typhoon-sf.pbi.net 919668280 206.170.2.102 (Sun, 21 Feb 1999 23:24:40 PDT) Organization: SBC Internet Services NNTP-Posting-Date: Sun, 21 Feb 1999 23:24:40 PDT Newsgroups: comp.lang.ada Date: 1999-02-22T00:00:00+00:00 List-Id: >More specifically: What does it look like? How would I write a "hello >world" program in Ada? A simple Ada program looks a lot like Pascal. Do you know Pascal? with Ada.Text_IO; procedure Hi is begin Ada.Text_IO.Put_Line("Hello World");end Hi; Unless of course you are running as flight control software for an airliner and have no console to write on. Perhaps you could then make the plane act like a skywriter, but there's not enough room in this short e-mail for that sample program. ;)