Help for this page

Select Code to Download


  1. or download this
     use Mouse;
     has 'body' => (is => 'rw');
    ...
    
     my $m = Doc->new;
     $m->body('double')->hdr->('headless')->ftr('soccer');
    
  2. or download this
     $select->select( $user->columns( 'user_id', 'username' ) )
             ->from( $user, $group )
             ->where( $group->group_id, 'IN', 1, 2, 3 )
             ->and  ( $func, 'LIKE', 'smith%' );