- or download this
my @a = ('a', 'b', 'c');
- or download this
my @a = 'a', 'b', 'c';
- or download this
( my @a = 'a' ), 'b', 'c';
- or download this
my @a = ( 1..4 );
- or download this
my @a = 1..4;
- or download this
use constant {
zed => 0,
...
repos => (qw(oss non-oss debug)),
two => 2,
};
- or download this
use constant {
zed => 0,
...
'non-oss' => 'debug',
two => 2,
};