Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: require and use strict vars

by ikegami (Patriarch)
on Dec 02, 2021 at 19:09 UTC ( [id://11139329]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Compensate for delayed/conditional load of Data::Dumper.
    package Data::Dumper {
    ...
    require Data::Dumper;
    $Data::Dumper::Indent = 0;
    print Data::Dumper::Dumper $data;
    
  2. or download this
    # Compensate for delayed/conditional load of Data::Dumper.
    package Data::Dumper {
    ...
    import Data::Dumper;
    $Data::Dumper::Indent = 0;
    print Dumper $data;
    

Log In?
Username:
Password:

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

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

    No recent polls found