Help for this page
qw{some string here};
warn "Possible attempt to put comments in qw() list" if q{some string here} =~ /#/ if $^W; warn "Possible attempt to separate words with commas" if q{some string here} =~ /,/ if $^W; split(' ', q{some string here});