http://qs321.pair.com?node_id=1097651


in reply to Using # inside qw()

You can turn the warnings off for your usage of qw
use strict; use warnings; my @c = do { no warnings 'qw'; qw' # % ( / 3 6 7 @ B C G Q R ^ s t ~ ' }; print $c[2];
- Miller

Replies are listed 'Best First'.
Re^2: Using # inside qw()
by Anonymous Monk on Aug 16, 2014 at 08:11 UTC
    Hah, these days I dd()umper everything, no warnings either :)
    my @c = ( "#", "%", "(", "/", 3, 6, 7, "\@", "B", "C", "G", "Q", "R", "^", "s", "t", "~", );
    naturally I perltidy also