This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
d99ad34
)
PATCH: perlref.pod - symbolic ref example
author
Ronald J. Kimball
<rjk@linguist.dartmouth.edu>
Sat, 20 Feb 1999 17:32:11 +0000
(12:32 -0500)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Sun, 21 Feb 1999 14:50:42 +0000
(14:50 +0000)
To: perl5-porters@perl.org (Perl 5 Porters)
Message-Id: <
199902202232
.RAA62306@linguist.dartmouth.edu>
p4raw-id: //depot/cfgperl@3003
pod/perlref.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlref.pod
b/pod/perlref.pod
index
df85013
..
596ff72
100644
(file)
--- a/
pod/perlref.pod
+++ b/
pod/perlref.pod
@@
-456,7
+456,7
@@
symbolic references. Lexical variables (declared with my()) aren't in
a symbol table, and thus are invisible to this mechanism. For example:
local $value = 10;
a symbol table, and thus are invisible to this mechanism. For example:
local $value = 10;
- $ref =
\$value
;
+ $ref =
"value"
;
{
my $value = 20;
print $$ref;
{
my $value = 20;
print $$ref;