Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: What do I use to release a module to CPAN for the first time?

by ikegami (Patriarch)
on Oct 11, 2020 at 05:06 UTC ( [id://11122683]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $opt->{'encoding'} ? $opt->{'encoding'} : 'utf-8'
    
  2. or download this
    $opt->{encoding} || 'utf-8'
    
  3. or download this
    if ( length($line) > 0 || $opt->{'empty'} && $opt->{'empty'} eq 'fill'
    + ) {
      $final_line = $prefix . $line . $suffix;
    ...
    else {
      next;
    }
    
  4. or download this
    my $empty = $opt->{empty} || '';
    ...
    ...
    else {
      next;
    }
    
  5. or download this
    my $empty = $opt->{empty} || '';
    my $trim_empty = !$empty;
    ...
    elsif ( !$trim_empty ) {
      push @array, $empty_replacement;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11122683]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-04-19 23:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found