Help for this page

Select Code to Download


  1. or download this
    $a.$b.$c.$d
    
  2. or download this
    concat_assign(  
       concat_assign( 
    ...
       ),
       $d
    )
    
  3. or download this
    concat_assign(  
       concat_assign( 
    ...
       ),
       $d
    )
    
  4. or download this
    $ perl -MO=Concise,-exec -e'$a.$b.$c.$d'
    1  <0> enter 
    ...
    9  <2> concat[t7] vKS/2
    a  <@> leave[1 ref] vKP/REFC
    -e syntax OK
    
  5. or download this
    sub concat_list :lvalue {
       my $tot_len;
    ...
       $buf .= $_ for @_;
       $buf
    }