From: Elizabeth Mattijsen Date: Mon, 1 Sep 2003 12:38:50 +0000 (+0200) Subject: [DOC PATCH] perlfaq4.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6f82c03a9e760d1a77ddbe0cd8675555a4b0c493;p=p5sagit%2Fp5-mst-13.2.git [DOC PATCH] perlfaq4.pod Message-Id: p4raw-id: //depot/perl@20981 --- diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index 1be7333..af08e47 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -2037,8 +2037,9 @@ and C functions: =head2 How do I print out or copy a recursive data structure? The Data::Dumper module on CPAN (or the 5.005 release of Perl) is great -for printing out data structures. The Storable module, found on CPAN, -provides a function called C that recursively copies its argument. +for printing out data structures. The Storable module on CPAN (or the +5.8 release of Perl), provides a function called C that recursively +copies its argument. use Storable qw(dclone); $r2 = dclone($r1);