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=unavailable autolearn_force=no version=3.4.4 Path: border1.nntp.dca3.giganews.com!backlog3.nntp.dca3.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newspeer1.nac.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!aioe.org!.POSTED!not-for-mail From: Luke A. Guest Newsgroups: comp.lang.ada Subject: Re: Your wish list for Ada 202X Date: Sun, 30 Mar 2014 18:48:12 +0000 (UTC) Organization: Aioe.org NNTP Server Message-ID: <1460904508417897880.765164laguest-archeia.com@nntp.aioe.org> References: <7f1c01c5-3563-4b94-9831-152dbbf2ecdc@googlegroups.com> <1656778100417879549.835031laguest-archeia.com@nntp.aioe.org> NNTP-Posting-Host: wgw156oZMMsNrkQOnO3nZw.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: abuse@aioe.org User-Agent: NewsTap/4.0.1 (iPhone/iPod Touch) X-Notice: Filtered by postfilter v. 0.8.2 X-Original-Bytes: 1715 Xref: number.nntp.dca.giganews.com comp.lang.ada:185422 Date: 2014-03-30T18:48:12+00:00 List-Id: Simon Clubley wrote: > On 2014-03-30, Luke A Guest wrote: >> wrote: >>> One wish to ease Input/output : >>> To have some equivalent of C primitive : printf("%c %c %c %c %c \n %c %c %c %c %c \n", >> >> God no. This requires parsing the string in every call, the Ada does it no >> is superior. Plus it requires parameter passing from the right rather than >> the left. > > Also, I'm not quite sure what you mean by the latter. As far as I can see, > the parameter passing would be left to right, just as it is in C. > > Simon. C uses vararga which are passed right to left as the varargs functions use thus right-ness to determine the number of parameters. Luke