Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
For the curious, try this:
The output that I get is:#!/usr/bin/perl -w $a = "name"; $b = 5; my $c = "name"; my $d = 5; print ".D(${a}[$b])\n"; print ".D(${c}[$d])\n";
.D(name[5]) .D([5])
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Searching for online perl bug reports
by hv (Prior) on Mar 04, 2003 at 01:36 UTC |