Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
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??


in reply to What I Most Recently Learned in Perl, But Should Have Already Known

I was aware of this:
my $indent = ' 'x5; # Yields ' '
But didn't realize I could also do this:
my @list = (1)x5; # Yields (1,1,1,1,1)
So I can stop doing this:
@placeholders = map {'?'} @columns;
And start doing 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 admiring the Monastery: (6)
As of 2024-04-23 10:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found