Help for this page

Select Code to Download


  1. or download this
        my %function_for;
        my %scalar_ref_for;
    ...
            my( $self ) = @_;
            return $scalar_ref_for{ ident $self };
        }
    
  2. or download this
    my $tied_variable;
    tie $tied_variable,
    ...
     ) };
    
    $tied_variable = "assignment";
    
  3. or download this
    my $tied_variable;
    tie $tied_variable,
    ...
    print {$fh} 'this is a test';
    
    warn 'here2:',$tied_variable;