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.1 required=5.0 tests=BAYES_40,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!topaz!nike!ucbcad!ucbvax!MIT-MULTICS.ARPA!Bakin From: Bakin@MIT-MULTICS.ARPA ("David S. Bakin") Newsgroups: net.lang.ada Subject: Preferred style of use-clauses Message-ID: <860802130119.442853@MIT-MULTICS.ARPA> Date: Sat, 2-Aug-86 09:01:00 EDT Article-I.D.: MIT-MULT.860802130119.442853 Posted: Sat Aug 2 09:01:00 1986 Date-Received: Sun, 3-Aug-86 03:28:03 EDT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The ARPA Internet List-Id: Can anyone tell me which of the following two styles is preferred, or how they differ, or even just which YOU prefer? (If you prefer NOT to use use-clauses you could let me know if you wish, but tell me why.) I'll summarize for the net. THANKS -- Dave Bakin (Bakin -at mit-multics.arpa) Style 1: with this; use this; with that; use that; {package/procedure/function} interesting is ... begin ... end; Style 2: with this; with that; {package/procedure/function} interesting is use this; use that; ... begin ... end;