Oops. $$$$$$$$$$

@$myStuff{qw/column1 column2 column3/};

is definitely an improvement but my list is very long. I think I will
have to assign new variables just to make the listing in multiple
lines. Horizontal scrolling to read off-page code is not nice.

On Wed, 11 Sep 2002 16:42:10 -0700, [EMAIL PROTECTED] (John W. Krahn)
wrote:

>Chris wrote:
>> 
>> I have many report columns and would like the format easier to read.
>> Is there a way to list the variables in multiple lines?
>> 
>> change this
>> 
>> myStuff->{column1},myStuff->{column2},myStuff->{column3}
>
>Do you mean:
>
>$myStuff->{column1}, $myStuff->{column2}, $myStuff->{column3}
>
>> to
>> 
>> myStuff->{column1},
>> myStuff->{column2},
>> myStuff->{column3}
>> 
>> to make the listing more readable but will not compile
>
>How about:
>
>@$myStuff{qw/column1 column2 column3/};
>
>
>
>John


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to