Help for this page

Select Code to Download


  1. or download this
    ###His code
    $GlobalName = "Clinton";
    ...
    $ref = \&getGlobalName();
    $$ref = "Gore";
    print "After: " . &getGlobalName() . "\n";
    
  2. or download this
    ###His code improved
    
    ...
    print "Before: " . &getGlobalName() . "\n";
    $GlobalName = "Gore";
    print "After: " . &getGlobalName() . "\n";
    
  3. or download this
    $ref = \&getGlobalName();
    
  4. or download this
    print "$ref \n";
    
  5. or download this
    CODE(0x1a45934)
    
  6. or download this
    ${CODE(0x1a45934)} = "Gore"