Help for this page

Select Code to Download


  1. or download this
    sub foo {
      my ($self, $data) = @_;
      $self->{bar} = _some_function($data);
    }
    
  2. or download this
    sub _some_function {
      my ( $self, $data ) = @_;
      return ParentClass::_some_function($data);
    }
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $o2 = Bar->new;
    $o2->foobared;
    print $o2->{foo};
    
  4. or download this
    3
    Bar=HASH(0xa065cc8)