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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,3b29116893873fe2,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!i42g2000cwa.googlegroups.com!not-for-mail From: "markww" Newsgroups: comp.lang.ada Subject: Setting up an Ada hello world project Date: 31 Oct 2006 11:14:06 -0800 Organization: http://groups.google.com Message-ID: <1162322045.860579.159590@i42g2000cwa.googlegroups.com> NNTP-Posting-Host: 67.154.89.221 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1162322051 2777 127.0.0.1 (31 Oct 2006 19:14:11 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 31 Oct 2006 19:14:11 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i42g2000cwa.googlegroups.com; posting-host=67.154.89.221; posting-account=cNKOMg0AAADT2ug8oGSYYXo8bsDvrHzw Xref: g2news2.google.com comp.lang.ada:7298 Date: 2006-10-31T11:14:06-08:00 List-Id: Hi, I finally got a working compiler for windows. However, I'm not quite sure how to go about compiling a hello world application. The default project created one source file with the text: project Ada_LinkedList is for Object_Dir use "..\..\..\"; for Main use ("main"); end Ada_LinkedList; but the compiler complains that there are no Ada sources in this project. How do I go about adding an Ada source? I just want to run something like: with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line("Hello, world!"); end Hello; Where does one #include this in Ada? Thanks, Mark