Purists say there should only be one entry and one exit and anything else is obfu. What do you say?

One entry to a subroutine yes. One exit no. Many people have disagreed with this point and for good reason. It increase code clutter, it increases code complexity, and often increases code duplication. About the only really useful argument that I can think of for only having one exit to a routine is to be able to positively determine the returned value. But theres lots of ways around that without losing clarity.

sub one_exit { my $foo=shift; my $return=shift; CORE:{ last CORE unless $foo; #... last CORE if $foo eq "bar"; #... } return $return }

or even easier is to just rename the sub for a bit and create a wrapper that calls it, allowing you to intercept its entry and exit, without artificial constraints confusing your code.

---
demerphq



In reply to Re: A matter of style by demerphq
in thread A matter of style by Ryszard

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.