Help for this page

Select Code to Download


  1. or download this
    use IO::Handle;
    my $fh = IO::Handle->new;
    tie *$fh, ...;
    
  2. or download this
    use Symbol qw/gensym/;
    my $fh = gensym;
    tie *$fh, ...;
    
  3. or download this
    my $fh = \do { local *HANDLE };