G'day powerin,

Welcome to the Monastery.

Firstly, here's a cut-down version of what you're doing. This is just to make subsequent examples more succinct.

$ perl -E 'sub W { grep { say "x"; return "z" } 1; say "y" } W' x
"So, "Still here #1" is never shown."

No, it won't be. You're returning from &working before the print statement is reached. You can confirm this by checking the return value.

$ perl -E 'sub W { grep { say "x"; return "z" } 1; say "y" } say W' x z

Removing the return statement from the original code gives the result you seem to be after.

$ perl -E 'sub W { grep { say "x" } 1; say "y" } W' x y

Calling either the builtin grep, or your custom mygrep, in void context, is highly questionable. I wonder whether this is really what you're trying to do, or if this was maybe just an example of what you want. Perhaps describing your actual intent, possibly with just pseudocode, will elicit better answers.

— Ken


In reply to Re: Bare BLOCK vrs. grep BLOCK by kcott
in thread Bare BLOCK vrs. grep BLOCK by powerin

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.