in reply to printing referenced arrays weirdness
The reason your printing is sorta backwards is because you commented out the 'end of line' and you are concatenating the string from the 1st print statement with the second print statement.
In other words, your code (snippet) (when the comments are removed) looks like:
Sandyprint "test_array: @$test_array " . print "test_array2: @$test_array2\ +n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: printing referenced arrays weirdness
by davido (Cardinal) on Nov 27, 2003 at 04:44 UTC |