[EMAIL PROTECTED] wrote:
> My problem is that arrays are being printed all on one line (as much
> as it can) instead of one line per element. What do I need to do
> with the data?
>
> use Printer;
>
> my @data = ('This is line one','This line two');
Need to add \n for each line or see if
> My problem is that arrays are being printed all on one line (as much as
> it can) instead of one line per element. What do I need to do with the
> data?
>
> use Printer;
>
> my @data = ('This is line one','This line two');
>
> $prn = new Printer();
> $prn->use_default;
> $prn->print(@data