- or download this
my @fred = qw(42 43 44 45);
my ($q, $x, $y, $z) = grep /\d+/, @fred;
print "$q $x $y $z\n";
- or download this
42 43 44 45
- or download this
($q, $x, $y) = grep /\d+/, @fred;
print "$q $x $y\n";
- or download this
42 43 44 - or download this
($q, $x) = grep /\d+/, @fred;
print "$x\n";
- or download this
42 43
- or download this
($q) = grep /\d+/, @fred;
print "$q\n";
- or download this
42