- or download this
use strict;
use warnings;
...
--output:--
3
a
- or download this
my @something = ('a', 'b', 'c');
...
a
b
c
- or download this
($d, $e) = @something;
say $d;
...
--output:--
a
b
- or download this
($d) = @something;
say $d;
--output:--
a
- or download this
$d = @something;
say $d;
--output:--
3
- or download this
my($s, $t, $u) = @something;
say $s;
...
a
b
c