Help for this page

Select Code to Download


  1. or download this
    
    PA
    PBC
    
  2. or download this
    
    sub prefix_print {
    ...
      $outstr =~ s/(\n)(?=.)/$1.$prefix/egs;
      print $outstr;
    }
    
  3. or download this
    
    # Note: This is buggy
    ...
            join('',@_) =~ m/(.*(?:\n|$))/g
      );
    }
    
  4. or download this
    
    PyPP