It becomes clear as what's going on, once we add some print outs at certain critical point (also see comments):

use Data::Dumper; use strict; sub prefix_later { my ($just_once,$and_later) = @_; #passed by calling part, see below my $ct=0; return sub { my (@args) = shift(); #this is just a trick ;-) print Dumper(\@args); print "ct = $ct\n"; #will not be reset to zero, becasue of closu +re ((!$ct++) ? #only true for the first time sub { print "sub1\n"; $just_once->(@args); #hi mom } : sub { print "sub2\n"; $and_later->(@args); #this was unneccessary: $just_once->(@args); #hi mom } )->(); } } my $hi_mom = prefix_later( sub { print "hi mom\n"; },#this is just once sub { print "this was unneccessary:\n"; } #this is and later ); $hi_mom->() for (1..3);

Outputs:

#first round $VAR1 = [ undef ]; ct = 0 sub1 hi mom #second round $VAR1 = [ undef ]; ct = 1 sub2 this was unneccessary: hi mom #third round $VAR1 = [ undef ]; ct = 2 sub2 this was unneccessary: hi mom

In reply to Re: Functional Programming & method rewriting by pg
in thread Functional Programming & method rewriting by SpanishInquisition

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.