Help for this page

Select Code to Download


  1. or download this
    # $obj->fooify(1,2,3) or fooify(10,20,30)
    # always expects 3 "real" args
    ...
      my ($x, $y, $z) = @_;
      # ...
    }
    
  2. or download this
    sub fooify {
      my $self;
    ...
      my ($x, $y, $z) = @_;
      # ...
    }