Help for this page

Select Code to Download


  1. or download this
    sub foo (ARRAY $arr) { ... }
    
  2. or download this
    package Bar;
    
    sub new { bless [], shift }
    
  3. or download this
    my $bar = Bar->new;
    
    foo( $bar );
    
  4. or download this
    if ($signature)
    {
    ...
            die "$x doesn't match $signature\n";
        }
    }