Help for this page

Select Code to Download


  1. or download this
    sub correlation
    {
      my($self, @args) = @_;
      print "self is $self, there are @args args\n";
    }
    
  2. or download this
    sub bar
    {
      my $self = shift;
      $self->{funcs}{$self->{method}}();
    }
    
  3. or download this
    my $x = new Foo;
    $x->bar;