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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f28dd1d63a9466b2 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1995-03-15 15:38:51 PST Path: bga.com!news.sprintlink.net!cs.utexas.edu!uwm.edu!lll-winken.llnl.gov!decwrl!pagesat.net!news.cerf.net!hacgate2.hac.com!atc-69!dkusu From: dkusu@atc-1s.hac.com (David Kusuda) Newsgroups: comp.lang.ada Subject: Re: Syntax question Date: 15 Mar 1995 23:29:28 GMT Organization: Guardian ATC - Hughes Aircraft Company Distribution: world Message-ID: <3k7t8o$4pt@hacgate2.hac.com> References: <3jt25s$dim@felix.seas.gwu.edu> Reply-To: dkusu@atc-1s.hac.com NNTP-Posting-Host: atc-69.hac.com Date: 1995-03-15T23:29:28+00:00 List-Id: In article dim@felix.seas.gwu.edu, mfeldman@seas.gwu.edu (Michael Feldman) writes: [snip] >The named association is very convenient in teaching about parameters, >and makes for nice readable code (IMHO, of course), but in general is >really "syntactic sugar." I agree with Michael's points regarding named parameter association. But the named parameter association is also necessary to: a) Specify the parameter list in an arbitrary order--I think this is a weak point as far as readability/maintainability, but still a point. b) Omit parameters which have default values. I think that this is very useful, too bad C++ doesn't have the same thing. Dave