Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Cheap idioms

by ignatz (Vicar)
on Oct 13, 2002 at 13:37 UTC ( [id://204896]=note: print w/replies, xml ) Need Help??


in reply to Cheap idioms

For me this
my $contents = do { local (@ARGV, $/) = $filename; <> };
in production code is a real pain.

This, on the other hand

# Slurp file my $contents = do { local (@ARGV, $/) = $filename; <> };
is just fine.

Very cool, BTW.

ADDED: --/me for not noticing Aristotle's post saying the same thing.

()-()
 \"/
  `                                                     

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (9)
As of 2024-04-23 08:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found