Help for this page

Select Code to Download


  1. or download this
    # instead of
    # my $TEMPfa; 
    
    # create it in scope
    open (my $TEMPfa, ">",  "temp"); #opens temp file
    
  2. or download this
    use FileHandle;
    my $TEMPfa = FileHandle->new;