Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: hash n' params

by araqnid (Beadle)
on Apr 07, 2001 at 20:38 UTC ( [id://70727]=note: print w/replies, xml ) Need Help??


in reply to hash n' params

When you're initialising a hash that contains a group of settings, you can put them together like this:
my %exec = ( html2ps => '/usr/bin/html2ps', ps2pdf => '/usr/bin/ps2pdf', html2text => '~/perl/html2text' );
which IMHO looks nicer. You're explicitly allowed to use barewords on the left hand side of a =>, even if "use strict" is in force.

Replies are listed 'Best First'.
Re (tilly) 2: hash n' params
by tilly (Archbishop) on Apr 08, 2001 at 00:02 UTC
    Warning. A bug I recently learned about:
    use strict; my %trial_hash = ( foo => "bar", );
    does not run properly in a Perl program, but does if you use eval. So while I use the "big arrow", you should put it on the same line as the key, not the value.

Log In?
Username:
Password:

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

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

    No recent polls found