Help for this page

Select Code to Download


  1. or download this
      my ($meth,@parts)=/.../;
      exists($dispatch{$meth}) and $disptach{$meth}->(@parts);
    
  2. or download this
      sub blah {
        $foo->SUPER::blah(@_);
        ...
      }
    
  3. or download this
    use warnings::register;
    
  4. or download this
    sub foo {
      my $array_ref=shift;
    ...
          and die "Can't use anything but an array";
      ...
    }