Changeset 15167 for docs/Perl6/Perl5

Show
Ignore:
Timestamp:
02/02/07 10:19:16 (22 months ago)
Author:
lwall
Message:

More .
More whitespace around
.
Several eval'd tests of .:X syntax

Files:
1 modified

Legend:

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

    r13390 r15167  
    271271 
    272272    Was: if (-r $file && -x _) {...} 
    273     Now: if -r -x $file {...} 
     273    Now: if $file ~~ :r & :x {...} 
    274274 
    275275For details, see L<S03/"Changes to Perl 5 operators"/"The filetest operators now return a result that is both a boolean">