qw - quote word - Perl Maven - for people who want to get the most out of programming in Perl
What is this qw I often see in Perl code? qw stands for quote word. It looks like some other operators such as q and qq, or qr, but actually it works more like split. If you want to include a list of strings in your code, for example to initialize an arra...