Help for this page

Select Code to Download


  1. or download this
    sub TIEHASH
    {
    ...
      }
      return $self;
    }
    
  2. or download this
    sub TIEHASH
    {
    ...
      }
      return $self;
    }
    
  3. or download this
    package A;
    use Moose;
    ...
       my $instance = tie(%ENV, 'BBB');
       return $instance;
    }
    
  4. or download this
    my $a = A->new;
    print $a->get_node('TERM'), "\n";
    
  5. or download this
    use v5.14;
    
    ...
    
    my $a = A->new;
    say $a->get_node('TERM');