Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: debugging during compile

by Perlbotics (Archbishop)
on Aug 17, 2011 at 22:02 UTC ( [id://920807]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w -T
    
    ...
    beginning my module2: b, c
    ending    my module2: b, c
    after  using my module: b, c
    
  2. or download this
    package Module;
    
    ...
    BEGIN { print 'ending    my module1: ' . join(', ',@ARGV)."\n" }
    
    1;
    
  3. or download this
    package Module2;
    
    ...
    BEGIN { print 'ending    my module2: ' . join(', ',@ARGV)."\n" }
    
    1;
    
  4. or download this
    BEGIN {
      *CORE::GLOBAL::require = sub {  printf "===== TRACE: req %-20s with 
    +ARGV=%s\n",
    ...
                                   };
    
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 20:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found