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,30352abc52760363 X-Google-Attributes: gid103376,public From: "Nick Roberts" Subject: Delphi & Ada; Ada to C++ Date: 1998/02/19 Message-ID: <01bd3cc5$a74ff160$LocalHost@xhv46.dial.pipex.com>#1/1 X-Deja-AN: 326427217 Content-Transfer-Encoding: 7bit References: <34E47622.15EB@atc-1s.hac.com> <1998Feb13.213046.1@eisner> <6c9tjc$obg@universe.digex.net> <34eb5d36.20077308@news.tiac.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Organization: UUNet UK server (post doesn't reflect views of UUNet UK) Newsgroups: comp.lang.ada Date: 1998-02-19T00:00:00+00:00 List-Id: Jean: procedure Just_Like_Ada_Really (A, B: {in} Integer; var Result: {out} String) ;{is} begin ... end {Just_Like_Ada_Really}; I have been where you now tread! On the subject of translation from one high level language to another (significantly different one). I think the consensus of opinion is that, if you need the result to be readable (by humans), manual translation is likely to be the only workable option. Machine translation is certainly possible. Since GNAT produces C code (and C++ is pretty well a superset of C), this suggests a possibility (doubtless not entirely wrinkle-free). Also, automated translation, or partial translation, could well be a good way to get a 'jump start' for a manual translation (and it may even be practical for you to program this yourself, since you need only be rough). == Nick Roberts ================================================ == Croydon, UK =========================== == ================ == Proprietor, ThoughtWing Software ========== == Independent Software Development Consultant ====== == Nick.Roberts@dial.pipex.com ==== == Voicemail & Fax +44 181-405 1124 === == == == I live not in myself, but I become == === Portion of that around me; and to me == ==== High mountains are a feeling, but the hum == ======= Of human cities torture. =========== -- Byron [Childe Harold] Jean D. Ichbiah wrote in article <34eb5d36.20077308@news.tiac.net>... > [...] I am doing most of my development using > Delphi. (More precisely, I program in Ada and use the Delphi compiler > to compile them. :)