Help for this page

Select Code to Download


  1. or download this
    my $fh = FileHandle->new(">./test");
    print $fh "Hello\n";
    
  2. or download this
    $hashref->{"fh"} =  FileHandle->new(">./test");
    print $hashref->{"fh"}  "Hello\n";
    
  3. or download this
     
     $hashref->{"fh"}->print()