Help for this page

Select Code to Download


  1. or download this
    my @lines=map {chomp; "'$_'"} <>;
    $"=",\n";
    print "(@lines)\n";
    
  2. or download this
    $"=",\n";
    print "(@{[map {chomp; qq|'$_'|} <>]})\n";