Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: What I Most Recently Learned in Perl, But Should Have Already Known

by imp (Priest)
on Aug 22, 2006 at 21:17 UTC ( [id://568971]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $indent = ' 'x5;
    # Yields '     '
    
  2. or download this
    my @list = (1)x5;
    # Yields (1,1,1,1,1)
    
  3. or download this
      @placeholders = map {'?'} @columns;
    
  4. or download this
      @placeholders = ('?')x @columns;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-16 04:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found