bichonfrise74 has asked for the wisdom of the Perl Monks concerning the following question:
So, I was thinking of something like this.#!/usr/bin/perl use strict; use Data::Dumper; my @arrays; push( @arrays, sub { return 'hello' }, "hi" ); print join "\n", @{ \@arrays }, "\n"; print Dumper \@arrays; __OUTPUT__ CODE(0x99d9550) hi $VAR1 = [ sub { "DUMMY" }, 'hi' ];
The Dumper output is almost there, it just needs to print the whole subroutine or at least something that would help in telling me which lines in the code that it used to insert the anonymous subroutine.CODE(0x99d9550) -- to something more meaningful? like print the whole subroutine code.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to Get More Info on Anonymous Subroutine
by ikegami (Patriarch) on May 06, 2010 at 23:53 UTC | |
|
Re: How to Get More Info on Anonymous Subroutine
by bichonfrise74 (Vicar) on May 07, 2010 at 03:03 UTC |