From: Casey West Date: Tue, 22 Apr 2003 11:19:09 +0000 (-0400) Subject: Doc pointers in perlbot. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4073dd47a95920b69d04dba3d446aad67e8f0cd3;p=p5sagit%2Fp5-mst-13.2.git Doc pointers in perlbot. Message-Id: <20030422151909.GC11119@geeknest.com> (Applied by hand.) p4raw-id: //depot/perl@19307 --- diff --git a/pod/perlbot.pod b/pod/perlbot.pod index bc4e4da..dc632ea 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, L, and L. 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, L, L.