in reply to printing an array with references in it
my %test_procs; foreach my $sym (sort keys %main::){ if(defined &{$main::{$sym}}){ $test_procs{\&{$main::{$sym}}} = $sym; } } foreach my $sub_ref (keys %test_procs){ foreach(@procs){ print "$test_procs{$sub_ref}\n" if $sub_ref eq $_; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: printing an array with references in it
by yosefm (Friar) on Jun 30, 2003 at 15:12 UTC |