Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my $fh=$filehandle[0];
    print $fh "Hello\n";
    
  2. or download this
    use IO::Handle;
    
  3. or download this
    $filehandle[0]->print("Hello\n");