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