diff options
author | Casey West <casey@geeknest.com> | 2003-04-22 07:19:09 -0400 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2003-04-22 16:39:51 +0000 |
commit | 4073dd47a95920b69d04dba3d446aad67e8f0cd3 (patch) | |
tree | 49017dbf17a6f247eeb45c9a56c2f7f32b9d92f7 /pod/perlbot.pod | |
parent | 6cfe8af5837ee4b149d08cdc2afce032abee3494 (diff) | |
download | perl-4073dd47a95920b69d04dba3d446aad67e8f0cd3.tar.gz |
Doc pointers in perlbot.
Message-Id: <20030422151909.GC11119@geeknest.com>
(Applied by hand.)
p4raw-id: //depot/perl@19307
Diffstat (limited to 'pod/perlbot.pod')
-rw-r--r-- | pod/perlbot.pod | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pod/perlbot.pod b/pod/perlbot.pod index bc4e4da1f7..dc632ea4da 100644 --- a/pod/perlbot.pod +++ b/pod/perlbot.pod @@ -10,7 +10,8 @@ mechanics of object and class relationships. The reader is encouraged to consult relevant textbooks for discussion of Object Oriented definitions and methodology. This is not intended as a tutorial for object-oriented programming or as a comprehensive guide to Perl's object oriented features, -nor should it be construed as a style guide. +nor should it be construed as a style guide. If you're looking for tutorials, +be sure to read L<perlboot>, L<perltoot>, and L<perltooc>. The Perl motto still holds: There's more than one way to do it. @@ -525,3 +526,7 @@ behavior by adding custom FETCH() and STORE() methods, if this is desired. tie %foo, "Mydbm", "adbm", O_RDWR|O_CREAT, 0640; $foo{'bar'} = 123; print "foo-bar = $foo{'bar'}\n"; + +=head1 SEE ALSO + +L<perlboot>, L<perltoot>, L<perltooc>. |