Help for this page

Select Code to Download


  1. or download this
      $rest = "+ " . $';
    
  2. or download this
      $rest = ( $' ) ? "+ $'" : '';
    
  3. or download this
    while ( length($rest) > 25 ) {
        my $break = index( $rest, ' ', 25 );
    ...
        $rest = '+ ' . substr( $rest, $break );
    }
    push @text, $rest if ( length( $rest ));