Changeset 13390 for docs/Perl6/Perl5

Show
Ignore:
Timestamp:
09/17/06 03:10:33 (2 years ago)
Author:
markstos
Message:

[Differences.pod]

Added section for file test operators.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Perl5/Differences.pod

    r13107 r13390  
    264264=cut  
    265265 
     266#S16 
     267 
     268=head1 
     269 
     270=head2 Chaining file test operators has changed 
     271 
     272    Was: if (-r $file && -x _) {...} 
     273    Now: if -r -x $file {...} 
     274 
     275For details, see L<S03/"Changes to Perl 5 operators"/"The filetest operators now return a result that is both a boolean"> 
     276 
     277=cut  
     278 
    266279#S26  
    267280