Help for this page

Select Code to Download


  1. or download this
    package Simple::Class;
    
    ...
    
        \@data;
    }
    
  2. or download this
    
      <table id="load_data">
    ...
        </tr>
    
      </table>
    
  3. or download this
    
    use HTML::Seamstress;
    ...
    print $seamstress->as_HTML;
    
  4. or download this
    use Inline::Java; # grin ;-)
    
    ...
          for (int i=0; i < shapes.length; i++)
               area += shapes[i].computeArea();
    
  5. or download this
    
    
    ...
      </table>
    
  6. or download this
    use HTML::Seamstress;
    
    ...
    
    print $seamstress->as_HTML;
    
  7. or download this
    
    
    ...
    
  8. or download this
    
         gi_tr       => 'iterate',
    
  9. or download this
    
         gi_tr       => [qw(iterate1 iterate2)],
    
  10. or download this
    sub table {
    
    ...
      my @table_gi_tr = listify $table{gi_tr} ;
    
      ...
    
  11. or download this
    my @table_gi_tr = (ref $table{gi_tr} eq 'ARRAY') 
        ? (@$table{gi_tr})
        : ( $table{gi_tr})
    
  12. or download this
    
    # fold the scalar and aref into an array
    ...
          ...
    
       }
    
  13. or download this
    our ($table_data, $tr_data, $gi_td);
    sub table {
    ...
    }