in reply to File I/O w/ arrays -- changing behavior

The problem is your output line:

print OUTPUT @row ."\n"; # make that: print OUTPUT @row ,"\n";

Your use of the concatenation operator is forcing scalar context on your array.

Replies are listed 'Best First'.
Re: Re: File I/O w/ arrays -- changing behavior
by Grygonos (Chaplain) on Dec 05, 2003 at 15:28 UTC
    gah... thanks I musta changed that on accident... sorry *facepalm*

    Grygonos