Help for this page

Select Code to Download


  1. or download this
    sub my_grep(&) { ... }
    sub my_pop(\@) { ... }
    
  2. or download this
    my $sth = $dbh->prepare("SELECT id,name,age FROM foo");
    $sth->execute();
    
    ...
    {
         $self->some_function(@$row);
    }