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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,208279d79d40e7d8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-29 08:50:01 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!feed2.news.rcn.net!feed1.news.rcn.net!rcn!not-for-mail From: j-anthony@rcn.com (Jon S. Anthony) Newsgroups: comp.lang.ada Subject: Re: Ada Advocacy. Date: 29 Aug 2003 12:13:15 -0400 Sender: jsa@rigel.goldenthreadtech.com Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: UmFuZG9tSVb9CseXZ9An6NOiXd1oFn2/9lQedrdqT4UcLNyGOA3bM0d+3UC0Xf68 X-Complaints-To: abuse@rcn.com NNTP-Posting-Date: 29 Aug 2003 15:49:45 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:41947 Date: 2003-08-29T15:49:45+00:00 List-Id: "Luke A. Guest" writes: > Actually, indirectly, you've also shown another example of a really cool > feature of Ada > > function blah(a : Integer, b : Float) : Boolean; > ... > blah(b => 1.0, a => 10); > > It'd be so cool to be able to do this in other languages... CL: (defun blah (&key a b) ...) ... (blah :b 1.0 :a 10) /Jon