in reply to Create table from a list of values?
Most likely, the tabs will do the right thing at the right border of the windows, i.e. wrap to the next line.{ local($,, $\) = ("\t", "\n"); print @array; }
If you don't like my use of special variables, you can use other means:
print join("\t", @array) . "\n";
It won't do you much good if you want to save the data in a text file, instead of just displaying it.
|
|---|