Using qw
September 28, 1998
The "qw" keyword is a useful
new addition to the language that allows you to
bypass the quote and comma character in list array
(or any word list) definitions:
@names = ("Eric", "Fred", "Gunther");
is now the same as:
@names = qw(Eric Fred Gunther);
Miscellaneous Constructs
Introduction to Perl 5 | Table of Contents
Using "=>"
|