in reply to qw "$string $string" doesn't interpolate
In fact, it made me wonder if this DWIM:
my @option_config = qw" $UNIQUE_OPT
$FORCE_OPT
$VERBOSE_OPT
$OUTPUT_EXT_OPT=s
";
:( Sadly, it doesn't.
Have you checked to see if interpolates? :)my @option_config = q" $UNIQUE_OPT $FORCE_OPT $VERBOSE_OPT $OUTPUT_EXT_OPT=s ";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: qw "$string $string" doesn't interpolate
by QM (Parson) on Jun 12, 2004 at 15:20 UTC | |
by PodMaster (Abbot) on Jun 12, 2004 at 22:26 UTC |