Help for this page

Select Code to Download


  1. or download this
    open FILE, "> somefile.txt" or die $!;
    print FILE join "\n", @array;
    close FILE;
    
  2. or download this
    {
      local $, = "\n";
    ...
      print FILE @array;
      close FILE;
    }