stas 02/04/24 22:44:29 Modified: src/docs/1.0/guide perl.pod Log: fix the syntax for declaring vars with our(). Submitted by: Larry Wall <[EMAIL PROTECTED]> Revision Changes Path 1.8 +1 -1 modperl-docs/src/docs/1.0/guide/perl.pod Index: perl.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/perl.pod,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- perl.pod 23 Apr 2002 13:29:28 -0000 1.7 +++ perl.pod 25 Apr 2002 05:44:29 -0000 1.8 @@ -1524,7 +1524,7 @@ With perl5.6 you can use the C<our> operator instead: - our ($scalar %hash @array); + our($scalar, %hash, @array); If you want to share package global variables between packages, here is what you can do.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]