- or download this
$ perl -Mstrict -Mwarnings -E '
my @x = qw{a b c};
...
'
a b c
a c
- or download this
$ perl -Mstrict -Mwarnings -E '
my @x = qw{a b c};
...
'
a b c
a c
- or download this
$ perl -Mstrict -Mwarnings -E '
my @x = ( qw{a}, (), qw{c} );
say "@x";
'
a c
- or download this
$ perl -Mstrict -Mwarnings -E '
my @x = qw{a b c};
...
'
a b c
A C