Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: What delete from symbol table really means? (Deleting typeglob of a specified package)

by Anonymous Monk
on Feb 16, 2015 at 10:54 UTC ( [id://1116858]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      $n = 123;
      delete $::{n};
      eval '$n=456';
      print $n;
      eval 'print $n';
    
  2. or download this
    use feature 'say';
    
    ...
            say;
        }
    }
    
  3. or download this
    $n        => 10
    $Foo::n   => 10
    ...
    $n        => 10
    $Foo::n   => 10
    $Foo::{n} =>
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-18 11:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found