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