in reply to Re: Hex to array conversion
in thread Hex to array conversion

The category is qw.
use warnings; @foo = qw( #foo bar,baz ); # Throw a warning; { no warnings 'qw'; @foo = qw( #foo bar,baz ); # Don't throw a warning; }


TGI says moo