Help for this page

Select Code to Download


  1. or download this
    1.) ($concat = $a) .= $b;
    
  2. or download this
    2.) $" = $b; @_ = ($a,undef); $concat = "@_";
    3.) do { $concat .= $_ for (split(//))} for ($a,$b);
    ...
    
    And finally, everyones favorite Perl6 construct...
    10.) $concat = $a _ $b;