Rodney_Hampton has asked for the wisdom of the Perl Monks concerning the following question:
===========snippet 1 works ========
============end snippet 1 ========eval{ use Util::Test_Util qw/ test_expand /; ($$stuff,$$stuff_error)=Util::Test_Util::test_expand(\@link_names); if ($stuff){return(1);}else{return(0);} };
============snippet 2 fails ========
============end snippet 2 ========eval{" use Util::Test_Util qw/ test_expand /; (\$\$stuff,\$\$stuff_error)=Util::Test_Util::test_expand(\\\@link_name +s); if (\$stuff){return(1);}else{return(0);} "};
Rodney A. Hampton
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: eval quoting problems
by nothingmuch (Priest) on Oct 22, 2002 at 19:03 UTC |