diff options
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlobj.pod | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pod/perlobj.pod b/pod/perlobj.pod index 0280c62be4..1eaeacdd13 100644 --- a/pod/perlobj.pod +++ b/pod/perlobj.pod @@ -142,6 +142,8 @@ that the variable stores; we are blessing the thing that the variable refers to (sometimes known as the I<referent>). This is best demonstrated with this code: + use Scalar::Util 'blessed'; + my $foo = {}; my $bar = $foo; |