On 12/03/2011 08:12 PM, John W. Krahn wrote:
my @summer = ( qw|
January February March
April May June
July August September
October November December
| )[ 0, 1, 2 );
my @winter = ( qw|
January February March
April May June
July August September
October November December
| )[ 5, 6, 7 );
my @sum
At 11:46 AM -0800 12/1/11, flebber wrote:
Hi
I can get the standard list slicing to work. But what about getting
the result of a list slice to an interpolated string or a range
interpolated.
In beginning perl Simon uses this example
#!/usr/bin/perl
# multilist.plx
use warnings;
use strict;
my
flebber wrote:
Hi
Hello,
I can get the standard list slicing to work. But what about getting
the result of a list slice to an interpolated string or a range
interpolated.
In beginning perl Simon uses this example
#!/usr/bin/perl
# multilist.plx
use warnings;
use strict;
my $mone; my $mtwo;
Hi
I can get the standard list slicing to work. But what about getting
the result of a list slice to an interpolated string or a range
interpolated.
In beginning perl Simon uses this example
#!/usr/bin/perl
# multilist.plx
use warnings;
use strict;
my $mone; my $mtwo;
($mone, $mtwo) = (1, 3);
pr