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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c9d5fc258548b22a X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx01.iad01.newshosting.com!newshosting.com!198.186.194.250.MISMATCH!news-xxxfer.readnews.com!news-out.readnews.com!postnews3.readnews.com!not-for-mail Date: Wed, 09 Feb 2011 17:34:51 -0500 From: Hyman Rosen User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: How do I write directly to a memory address? References: <4d52d7d9$0$18057$882e7ee2@usenet-news.net> <141301266d6fda6148bb1b1a7523c20f@remailer.paranoici.org> In-Reply-To: <141301266d6fda6148bb1b1a7523c20f@remailer.paranoici.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <4d53168e$0$18057$882e7ee2@usenet-news.net> NNTP-Posting-Host: 0418c430.usenet-news.net X-Trace: DXC=jm\f\97:jU]55omkZDZNYV^oXGM_6\KVPmX0AG3X_jU_<^JMhOhjP4^VjKk:Lk^BNQcR12TN^Bg7^CKIHCW3N^VTOiaDcmXlf@U X-Complaints-To: abuse@usenet-news.net Xref: g2news1.google.com comp.lang.ada:17183 Date: 2011-02-09T17:34:51-05:00 List-Id: On 2/9/2011 5:31 PM, Anonymous wrote: >> You cannot use the word "requirements" as if it is simple. >> What are the requirements of an Ada compiler? I submit that >> specifying the requirements of a program is identical to >> writing that program, and you are only fooling yourself if >> you believe otherwise. > > The Ada language specification and standard are the requirements. They did a > really good job, perhaps the best in computing history. Ada is more portable > than any language I've seen. I can type in examples from books starting in > 1983 and they all run without error. Oh, good. Maybe you can answer the question I've been asking Shark8. I have this subprogram, Function SumTo( N : Positive ) Return Positive is begin Case N is When 1 => Return 1; When Others => Return 1 + SumTo(N-1); end case; end SumTo; What values of N can I pass to this function and get back a correct sum? Do the Ada compiler requirements tell me?