Help for this page

Select Code to Download


  1. or download this
    my $file = "file";
    my $temp = "temp";
    ...
       open $file, '>', "$temp" . "$_";
       print $file "THIS IS DATA";
    }
    
  2. or download this
    my $file = "file";
    my $temp = "temp";
    ...
       open $file, '>', "$temp" . "$end";
       print $file "THIS IS DATA";
    }