Help for this page

Select Code to Download


  1. or download this
    my @arr = qw(book dog cat);
    {
        local $" = "','";
        print "['@arr'];\n";
    }
    
  2. or download this
    my @arr = qw(book dog cat);
    $"='\',\'';print"['@arr'];$/";