in reply to Re: recursive anonymous subroutines
in thread recursive anonymous subroutines

How would one do that? I'm curious.

Replies are listed 'Best First'.
Re^3: recursive anonymous subroutines
by TedYoung (Deacon) on Apr 06, 2006 at 20:19 UTC
    OK, I found a way, but you won't like it! :-)
    Use $DB::sub->() but you have to run it under the perl debuger (perl -d):
    sub { print 'A'; $DB::sub->() }->();

    Ted Young

    ($$<<$$=>$$<=>$$<=$$>>$$) always returns 1. :-)

      That only works when the debugger is enabled. For general use, see Devel::Caller.

      ⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊

Re^3: recursive anonymous subroutines
by chromatic (Archbishop) on Apr 07, 2006 at 07:18 UTC

    I'd write a little very scary, very hairy XS code. I don't know which of three or four approaches would work best, but I'd start by poking around PL_curcop.

      Surely the *best* approach is to not write the scary hairy XS code and just accept that you'll have to use a variable. It's not like variables kill babies or anything.