Help for this page

Select Code to Download


  1. or download this
    $out = sprintf("@tmp");
    
  2. or download this
    local $" = '';  # Don't insert spaces.
    $out = "@tmp";  # sprintf not needed at all.
    
  3. or download this
    $out = join('', @tmp);