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: Matthew Heaney Subject: Re: What is ADA? Date: 1999/02/22 Message-ID: #1/1 X-Deja-AN: 446992836 Sender: matt@mheaney.ni.net References: <36D10384.CB4925C8@GoAway.com> NNTP-Posting-Date: Mon, 22 Feb 1999 00:00:45 PDT Newsgroups: comp.lang.ada Date: 1999-02-22T00:00:00+00:00 List-Id: Ada is a high-level systems-programming language, with built-in support for concurrency and real-time programming. Designed to catch programming errors both at compile-time and run-time, it facilitates the construction of large, low-defect software systems. GNAT is a free, high-quality Ada95 compiler. Aonix also has a free student edition. with Ada.Text_IO; use Ada.Text_IO; procedure Hello_World is begin Put_Line ("Hello, world!"); end; Corvus writes: > More specifically: What does it look like? How would I write a "hello > world" program in Ada? > -- > This is my .SIG file. Enjoy.