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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,60e2922351e0e780 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-19 19:52:27 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!c03.atl99!news.webusenet.com!diablo.voicenet.com!news.moat.net!news.wplus.net!newsfeed.wplus.net!not-for-mail From: "Brian Gaffney" Newsgroups: comp.lang.ada Subject: Re: Clause "with and use" Date: Wed, 19 Nov 2003 22:53:32 -0500 Organization: Webplus NEWS server Message-ID: References: <3FA2CDCB.500F4AF0@fakeaddress.nil> <3FA3B412.AF3BEB96@fakeaddress.nil> <3FA50083.10709@noplace.com><3FA777E9.4030605@noplace.com><3FA79F58.1020503@noplace.com> NNTP-Posting-Host: 1cust109.tnt1.macon.ga.da.uu.net X-Trace: news.wplus.net 1069300336 96636 67.216.57.109 (20 Nov 2003 03:52:16 GMT) X-Complaints-To: usenet@news.wplus.net NNTP-Posting-Date: Thu, 20 Nov 2003 03:52:16 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Xref: archiver1.google.com comp.lang.ada:2707 Date: 2003-11-19T22:53:32-05:00 List-Id: "Marius Amado Alves" wrote in message news:mailman.25.1069157542.3110.comp.lang.ada@ada-france.org... > I don't count keystrokes. My argument is for readability. I actually > find > > with Gtk.Arguments; use @; > with Gtk.Button; use @; > with Gtk.Handlers; > > more readable than the canonical form. And more pleasing, which can also > be a quality factor. Natural language has lots of pronouns for good > reason. In that case shouldn't the above be with Gtk.Arguments; use it; with Gtk.Button; use it; with Gtk.Handlers; (Does this imply we could have with Gtk.Arguments, Gtk.Button; use them; with Gtk.Handlers; :-) Also, wouldn't with use Gtk.Arguments, Gtk.Button; be cleaner (but less readable) than with and use Gtk.Arguments, Gtk.Button;