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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,93153d8842cbd22c X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!feeder.news-service.com!aioe.org!news.tornevall.net!news.jacob-sparre.dk!pnx.dk!jacob-sparre.dk!ada-dk.org!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: finding code in Eclipse Date: Fri, 12 Aug 2011 00:09:19 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <82vcu5qyeu.fsf@stephe-leake.org> <4ai47b369l5q$.ax5kryi451vl$.dlg@40tude.net> <82pqkc1s63.fsf@stephe-leake.org> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1313125762 6116 69.95.181.76 (12 Aug 2011 05:09:22 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Fri, 12 Aug 2011 05:09:22 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6109 Xref: g2news1.google.com comp.lang.ada:20549 Date: 2011-08-12T00:09:19-05:00 List-Id: "Dmitry A. Kazakov" wrote in message news:jusaejt9oemr.1phebbrc382v2.dlg@40tude.net... > On Thu, 11 Aug 2011 00:35:48 -0400, Stephen Leake wrote: > >> "Dmitry A. Kazakov" writes: >> >>> On Wed, 10 Aug 2011 07:49:29 -0400, Stephen Leake wrote: >>> >>>> My trusty Palm is finally dying, so I'm switching to an Android. Since >>>> there is an Ada compiler for JVM, >>> >>> Is it Ada? >> >> http://libre.adacore.com/libre/download2?config=jvm-windows&version=2011# >> >> The README.txt doesn't say anything about less than full Ada; it is the >> same README.txt that is on the x86-windows version. >> >> So far, it does text_io "Hello World"; I have not tried translating the >> Android Hello World tutorial to Ada yet. > > Interesting. What about tasks, tagged types, Unchecked_Deallocation? Not sure why those would be an issue. We did Ada tasks on MS-DOS (no support for anything there). Nothing hard about doing tagged types, either. It's surely possible to treat the JVM as just another processor. [Interfacing might be interesting, but you didn't ask about that!] Unchecked_Deallocation doesn't have to do anything other than the finalization and nulling of the pointer, and on a garbage-collected target machine, doing nothing probably is appropriate. So it's surely possible. (Intemetrics used to have a JVM Ada compiler, I think it was validated, so it was complete Ada 95.) Randy.