Help for this page

Select Code to Download


  1. or download this
    sub _put_list ($@) {
       my $target = shift;
    ...
    
    eval "sub $_ { return _put_list($_ => \@_);}" for qw{column table};
    
  2. or download this
    sub column {
       return _put_list(column => @_);
    }