Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^8: What esteemed monks think about changes necessary/desirable in Perl 7 outside of OO staff

by Fletch (Bishop)
on Sep 15, 2020 at 15:51 UTC ( [id://11121801]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    s/^\s+//;
    s/\s+$//;
    s/\s+/ /g;
    
  2. or download this
    sub trim {
        my @out = @_ ? @_ : $_;
        $_ = join(' ', split(' ')) for @out;
        return wantarray ? @out : "@out";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (4)
As of 2024-04-26 09:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found