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.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,dd17afdec1033c93 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!news.glorb.com!wn11feed!worldnet.att.net!bgtnsc04-news.ops.worldnet.att.net.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada From: anon@anon.org (anon) Subject: Re: From Pascal to Ada Reply-To: anon@anon.org (anon) References: <1193957079.981952.101030@d55g2000hsg.googlegroups.com> X-Newsreader: IBM NewsReader/2 2.0 Message-ID: Date: Thu, 01 Nov 2007 23:44:23 GMT NNTP-Posting-Host: 12.64.24.140 X-Complaints-To: abuse@worldnet.att.net X-Trace: bgtnsc04-news.ops.worldnet.att.net 1193960663 12.64.24.140 (Thu, 01 Nov 2007 23:44:23 GMT) NNTP-Posting-Date: Thu, 01 Nov 2007 23:44:23 GMT Organization: AT&T Worldnet Xref: g2news2.google.com comp.lang.ada:2700 Date: 2007-11-01T23:44:23+00:00 List-Id: Try this: type realFunction is access function ( x : float ) return float ; In <1193957079.981952.101030@d55g2000hsg.googlegroups.com>, j.khaldi@oltrelinux.com writes: >Hi, >how do you translate this Pascal code in Ada? > >type > realFunction = function(x: double): double; > >Thanks! >