Changeset 13390 for docs/Perl6/Perl5
- Timestamp:
- 09/17/06 03:10:33 (2 years ago)
- Files:
-
- 1 modified
-
docs/Perl6/Perl5/Differences.pod (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Perl5/Differences.pod
r13107 r13390 264 264 =cut 265 265 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 275 For 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 266 279 #S26 267 280
