Help for this page

Select Code to Download


  1. or download this
    sub concat {
        return join '', @_;
    }
    
  2. or download this
    sub concat {
        return $_[0] . $_[1];
    
  3. or download this
    sub concat {
        local $" = '';
        return "@_";
    }