in reply to qw operator
Anyway,
is more or less equivalent to:qw{some string here};
but then done at compile time.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});
|
|---|