in reply to How do I disable variable expansion of strings?
Interpolated would be a bit nicer as:print "Array entry: ". $i. "\t". $array[$i]. "\n";
print "Array entry: $i\t$array[$i]\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I disable variable expansion of strings?
by ikegami (Patriarch) on Sep 03, 2007 at 17:06 UTC | |
|
Re^2: How do I disable variable expansion of strings?
by seank (Acolyte) on Sep 04, 2007 at 10:28 UTC |