Help for this page

Select Code to Download


  1. or download this
        qw{some string here};
    
  2. or download this
        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});