- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my ($x, $y, $z) = (30, 40, 50);
...
Useless use of private variable in void context at -e line 1.
Useless use of private variable in void context at -e line 1.
30, 40, 55
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my @ra = (30, 40, 50);
...
print qq{@ra};
"
33 44 55
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"use List::MoreUtils qw(pairwise);
...
print qq{@rc};
"
33 44 55
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"use List::MoreUtils qw(pairwise);
...
print qq{@ra};
"
33 44 55