Help for this page

Select Code to Download


  1. or download this
    sub commify {
       local $_  = shift;
    ...
        }eg;
       return $_;
    }
    
  2. or download this
    sub commify {
      local $_ = shift;
    ...
       }e;
      return $_;
    }
    
  3. or download this
    sub commify {
      local $_ = shift;
    ...
      }
      return $_;
    }