Search notes:

Perl function: qw

#!/usr/bin/perl
use warnings;
use strict;

my @vec = qw(one two three four five);
print join " - ", @vec;
print "\n";
#
#  one - two - three - four - five
Github repository about-perl, path: /functions/qw.pl

See also

A similar function in R is Cs, found in package Hmisc.
Perl functions

Index