Help for this page

Select Code to Download


  1. or download this
    use Carp;
    # time passes
    ...
      open($fh, $file) or confess("Cannot open '$file': $!");
      return $fh;
    }
    
  2. or download this
      my $handle = my_open("whatever");
    
  3. or download this
      print $self->{handle} @stuff;
    
  4. or download this
      print { $self->{handle} } @stuff;