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

Re2: MOPT-04 - identification, part 2

by mstone (Deacon)
on Jan 08, 2003 at 01:52 UTC ( [id://225140]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        $VAR = "old VAR";
        sub func {return ("old func()")}
    ...
        show();
        redefine();
        show();
    
  2. or download this
        VAR='old VAR', func()='old func()'
        VAR='new VAR', func()='new func()'
        VAR='old VAR', func()='new func()'
    
  3. or download this
     
        $VAR = "old VAR";
        $FUNC = sub {return ("old func()")};
    ...
        show();
        redefine();
        show();
    
  4. or download this
        VAR='old VAR', func()='old func()'
        VAR='new VAR', func()='new func()'
        VAR='old VAR', func()='old func()'
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-20 01:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found