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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9e90e30a519a635b,start X-Google-Attributes: gid103376,public From: Matthew Daniel Subject: return statements in procedures Date: 2000/06/05 Message-ID: <393B2054.618F6E80@baesystems.com.au>#1/1 X-Deja-AN: 631143851 Content-Transfer-Encoding: 7bit X-Accept-Language: en Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@tobruk.sydney.gecm.com X-Trace: tobruk.sydney.gecm.com 960175919 2695 203.2.118.10 (5 Jun 2000 03:31:59 GMT) Organization: BAE Systems Mime-Version: 1.0 NNTP-Posting-Date: 5 Jun 2000 03:31:59 GMT Newsgroups: comp.lang.ada Date: 2000-06-05T03:31:59+00:00 List-Id: Hi, we are having a "discussion" at work at the moment about return statements in procedures. There is one who believes it is acceptable for certain circumstances and the rest of us do not believe it should occur. just seeing what every one else thinks. Matt eg procedure Blah (....) is begin if .... then return; end if; .. end Blah;